forked from react-dropzone/react-dropzone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.74 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
{
"name": "preact-dropzone",
"version": "0.1.0",
"description": "Simple HTML5 drag-drop zone with Preact.js",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && webpack",
"clean": "rimraf ./dist",
"test": "mocha --require ./mocha-environment.js ./src/test.js",
"eslint:src": "eslint ./src ./*.js",
"eslint:fix": "eslint --fix",
"git:add": "git add"
},
"pre-commit": [
"eslint:src"
],
"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": {
"preact": "^6.3.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",
"mocha": "^2.5.3",
"npm-check": "^5.2.1",
"npmpub": "^3.1.0",
"preact": "^6.3.0",
"pre-commit": "^1.1.3",
"rimraf": "^2.5.2",
"webpack": "^1.13.1"
}
}