-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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
{
"name": "react-kinetic",
"version": "0.3.0",
"author": "Mikhail <[email protected]> Novikov",
"description": "Using KineticJS library with React",
"keywords": [
"canvas",
"kinetic",
"react",
"react-component",
"browser"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/freiksenet/react-kinetic.git"
},
"peerDependencies": {
"kinetic": "5.0.6",
"react": "^0.11.0"
},
"devDependencies": {
"kinetic": "5.0.6",
"react": "^0.11.0",
"jshint": "^2.5.6",
"jsx-loader": "^0.11.2",
"karma-chrome-launcher": "^0.1.5",
"karma-cli": "0.0.4",
"karma-firefox-launcher": "^0.1.3",
"karma-jasmine": "^0.1.5",
"karma-webpack": "^1.2.2",
"webpack": "^1.4.4",
"webpack-dev-server": "^1.6.5"
},
"main": "./react-kinetic",
"scripts": {
"clean": "rm -r build",
"umd": "webpack",
"demo": "npm run umd && cp -r demo build/ && cp index.html build/",
"umd-min": "webpack --config webpack.config.min.js",
"start": "webpack-dev-server -d --colors --progress",
"test": "jshint ./react-kinetic.js ./src/*.js ./test/*.js && karma start --single-run --browsers Firefox",
"test-watch": "karma start",
"gh-pages": "./scripts/gh-pages.sh"
}
}