forked from react-dropzone/react-dropzone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-dropzone",
"version": "3.5.0",
"description": "Simple HTML5 drag-drop zone with React.js",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && webpack",
"clean": "rimraf ./dist",
"prerelease": "npm run eslint && npm run build && npm run test:build",
"release": "npmpub",
"test": "mocha --require ./mocha-environment.js ./src/test.js",
"test:build": "NODE_ENV=production npm run build && npm run test",
"eslint": "eslint ./src ./*.js",
"eslint:fix": "npm run eslint -- --fix",
"eslint-staged": "eslint-staged",
"deps": "npm-check -s",
"deps:update": "npm-check -u"
},
"pre-commit": [
"eslint-staged"
],
"keywords": [
"react-component",
"react",
"drag",
"drop",
"upload"
],
"repository": {
"type": "git",
"url": "git+https://github.com/okonet/react-dropzone.git"
},
"bugs": {
"url": "https://github.com/okonet/react-dropzone/issues"
},
"homepage": "https://github.com/okonet/react-dropzone",
"author": "Param Aggarwal",
"contributors": [
"Andrey Okonetchnikov <[email protected]> (http://okonet.ru)",
"Param Aggarwal"
],
"license": "MIT",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"dependencies": {
"attr-accept": "^1.0.3"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.9.0",
"chai": "^3.4.1",
"eslint": "^2.11.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"jsdom": "^9.2.1",
"lint-staged": "^0.2.2",
"mocha": "^2.5.3",
"npm-check": "^5.2.1",
"npmpub": "^3.1.0",
"pre-commit": "^1.1.3",
"react": "^15.0.1",
"react-addons-test-utils": "^15.0.1",
"react-dom": "^15.0.1",
"react-testutils-additions": "^15.0.0",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"webpack": "^1.13.1"
}
}