-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
70 lines (70 loc) · 1.65 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
{
"name": "nuclear-js-react-addons",
"version": "0.4.1",
"description": "React addons for nuclear-js",
"main": "build/index.js",
"scripts": {
"build": "scripts/build.sh",
"prepublish": "npm run build",
"test": "npm run lint && karma start --single-run",
"lint": "eslint .",
"watch": "karma start"
},
"authors": [
"Jordan Garcia",
"Serge Havas"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jordangarcia/nuclear-js-react-addons/issues"
},
"homepage": "https://github.com/jordangarcia/nuclear-js-react-addons",
"repository": {
"type": "git",
"url": "git://github.com/jordangarcia/nuclear-js-react-addons"
},
"keywords": [
"flux",
"nuclear",
"immutable",
"react",
"addons",
"functional",
"stateless"
],
"files": [
"build",
"dist"
],
"dependencies": {
"hoist-non-react-statics": "^1.0.2",
"object-assign": "*"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-core": "^5.8.22",
"babel-eslint": "^4.0.10",
"babel-loader": "^5.3.2",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.12.0",
"expect": "^1.13.4",
"jsdom": "^6.1.0",
"karma": "^0.13.15",
"karma-chrome-launcher": "^0.2.2",
"karma-mocha": "^0.2.1",
"karma-webpack": "^1.7.0",
"mocha": "^2.2.5",
"mocha-jsdom": "^1.0.0",
"node-libs-browser": "^0.5.2",
"nuclear-js": "^1.2.1",
"react": "^0.14.x",
"react-addons-test-utils": "^0.14.3",
"react-dom": "^0.14.3",
"should": "^7.0.4",
"webpack": "^1.11.0",
"webpack-dev-server": "^1.10.1"
},
"peerDependencies": {
"react": "^0.14 || ^15.0.0-rc || ^15.0.0"
}
}