forked from StreakYC/react-draggable-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.24 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
{
"name": "react-draggable-list",
"version": "3.2.0",
"description": "Make a list of draggable collapsible items.",
"main": "js/index.js",
"scripts": {
"prepare": "babel -s inline -d js/ src/ --ignore '*.test.*' && flow-copy-source -v src js --ignore '*.test.*'",
"example-build": "NODE_ENV=development browserify -t babelify -do example/bundle.js example/main.js",
"example-watch": "NODE_ENV=development-hmr watchify -v -p browserify-hmr -t babelify -do example/bundle.js example/main.js",
"example-build-prod": "NODE_ENV=production browserify -t babelify -do example/bundle.js example/main.js",
"test": "npm run lint && npm run flow_check && jest",
"flow_check": "flow check",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StreakYC/react-draggable-list.git"
},
"keywords": [
"react",
"react-component",
"animation",
"reorder",
"move",
"drag-and-drop",
"draggable"
],
"author": "Chris Cowan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/StreakYC/react-draggable-list/issues"
},
"homepage": "https://github.com/StreakYC/react-draggable-list#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.5.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.0",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.18.0",
"babelify": "^7.2.0",
"browserify": "^14.1.0",
"browserify-hmr": "^0.3.1",
"classnames": "^2.2.3",
"eslint": "^3.11.1",
"eslint-plugin-react": "^6.7.1",
"flow-bin": "^0.41.0",
"flow-copy-source": "^1.0.1",
"jest": "^19.0.2",
"pdelay": "^1.0.0",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^15.0.0",
"watchify": "^3.9.0"
},
"dependencies": {
"babel-runtime": "^6.18.0",
"react-addons-update": "^15.0.0",
"react-motion": "^0.4.5",
"react-save-refs": "^1.0.1"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
}
}