forked from yahoo/fluxible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.64 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
{
"name": "fluxible-repo",
"version": "1.0.0",
"private": true,
"description": "Fluxible monorepo",
"repository": {
"type": "git",
"url": "https://github.com/yahoo/fluxible"
},
"scripts": {
"test": "mocha {**,**/**}/tests/unit/ --recursive --compilers js:babel-register --reporter spec",
"cover": "istanbul cover --dir artifacts -- _mocha {**,**/**}/tests/unit/ --recursive --compilers js:babel-register --reporter spec",
"lint": "eslint .",
"postinstall": "gulp install",
"preversion": "echo \"Error: version should be called using gulp\" && exit 1"
},
"dependencies": {},
"devDependencies": {
"async": "^1.4.2",
"babel": "^6.5.2",
"babel-core": "^6.6.4",
"babel-eslint": "^6.0.0",
"babel-plugin-syntax-decorators": "^6.5.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-object-rest-spread": "^6.6.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.6.0",
"chai": "^3.2.0",
"coveralls": "^2.11.1",
"es6-promise": "^3.1.2",
"eslint": "^2.2.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-react": "^4.1.0",
"gulp": "^3.9.0",
"istanbul": "^0.4.2",
"jsdom": "^8.1.0",
"mocha": "^2.0.1",
"pre-commit": "^1.0.7",
"react": "^15.0.0-rc.1",
"react-addons-test-utils": "^15.0.0-rc.1",
"react-dom": "^15.0.0-rc.1",
"shelljs": "^0.6.0",
"yargs": "^4.2.0"
},
"devEngines": {
"node": "4.x || 5.x",
"npm": "2.x || 3.x"
},
"pre-commit": [
"lint",
"test"
],
"author": "Michael Ridgway <[email protected]>",
"license": "BSD-3-Clause"
}