forked from BinaryMuse/fluxxor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.73 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
72
73
{
"name": "fluxxor",
"version": "50.8.2",
"description": "Flux architecture tools for React",
"repository": {
"type": "git",
"url": "https://github.com/BinaryMuse/fluxxor.git"
},
"main": "index.js",
"scripts": {
"test": "npm run jshint && mocha --recursive",
"jshint": "jsxhint lib/ test/",
"build": "./script/build-fluxxor && ./script/build-examples",
"preview-site": "wintersmith preview -C site",
"build-site": "wintersmith build -C site"
},
"keywords": [
"react",
"flux"
],
"author": "Brandon Tilley <[email protected]>",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"envify": "^3.4.0",
"jsdom": "~8.4.0",
"json-loader": "^0.5.4",
"jsx-loader": "^0.13.2",
"jsxhint": "^0.15.1",
"less": "^2.6.1",
"less-loader": "^2.2.3",
"mocha": "^2.4.5",
"react": "^15.0.1",
"react-addons-test-utils": "^15.0.1",
"react-dom": "^15.0.1",
"react-router": "^2.3.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"tcomb-form": "^0.9.3",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1",
"wintersmith": "^2.4.1",
"wintersmith-ejs": "^0.1.4",
"wintersmith-less": "^1.0.0"
},
"dependencies": {
"eventemitter3": "^2.0.3",
"lodash": "^4.12.0",
"object-path": "^0.11.4",
"prop-types": "^15.6.0"
},
"jshintConfig": {
"camelcase": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"latedef": true,
"newcap": false,
"undef": true,
"unused": true,
"trailing": true,
"node": true,
"browser": true,
"predef": [
"it",
"describe",
"beforeEach",
"afterEach"
]
}
}