-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·59 lines (59 loc) · 1.58 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
{
"name": "react-interactjs",
"version": "0.1.2",
"description": "a React wrapper for interact.js",
"main": "index.js",
"scripts": {
"prepublish": "npm build",
"postpublish": "npm run publish:docs",
"prepublish:docs": "npm run build:docs",
"publish:docs": "surge --domain react-interactjs.surge.sh demo",
"postpublish:docs": "npm run cleanup:docs",
"build": "webpack",
"build:docs": "webpack --config webpack.demo.config.js",
"cleanup:docs": "rm -rf demo/js",
"start": "webpack-dev-server --config webpack.demo.config.js --content-base demo --hot --inline",
"test": "mocha"
},
"keywords": [
"react",
"interact",
"draggable",
"resizable"
],
"author": "Luke Hansell <[email protected]>",
"license": "ISC",
"engines": {
"node": ">=4"
},
"bugs": {
"url": "https://github.com/lukehansell/react-interactjs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lukehansell/react-interactjs"
},
"devDependencies": {
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.8.0",
"chai": "^3.5.0",
"enzyme": "^2.2.0",
"jsdom": "^8.5.0",
"mocha": "^2.4.5",
"react": "^15.0.2",
"react-addons-test-utils": "^15.0.2",
"react-dom": "^15.0.2",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"surge": "^0.18.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"interact.js": "^1.2.6"
}
}