forked from yahoo/fluxible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.02 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
{
"name": "fluxible-repo",
"version": "1.0.0",
"private": true,
"description": "Fluxible monorepo",
"repository": {
"type": "git",
"url": "https://github.com/yahoo/fluxible"
},
"scripts": {
"build": "lerna bootstrap --hoist --since --include-filtered-dependencies --no-ci",
"cover": "lerna run cover --since",
"cover:collect": "mkdir -p ./.nyc_output/ && for d in $(find packages -type d -name '.nyc_output' -maxdepth 2 -exec find '{}' -type f ';'); do (cp $d ./.nyc_output/); done; nyc report --reporter=lcov --report-dir=${COVERAGE_DIR:-artifacts/coverage}",
"dev:lint": "lerna run lint --since master --stream",
"dev:test": "lerna run test --since master --stream",
"lint": "eslint .",
"test": "lerna run lint --since --stream && lerna run test --since --stream"
},
"dependencies": {},
"devDependencies": {
"async": "^2.0.0",
"babel": "^6.5.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.6.4",
"babel-eslint": "^10.0.0",
"babel-plugin-istanbul": "^5.1.1",
"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.24.1",
"chai": "^4.0.2",
"coveralls": "^3.0.0",
"create-react-class": "^15.5.1",
"es6-promise": "^4.0.2",
"eslint": "^6.0.0",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-react": "^7.0.0",
"fluxible": "^1.0.0",
"jsdom": "^15.0.0",
"lerna": "^3.0.0",
"lodash": "^4.17.5",
"mocha": "^6.0.0",
"mockery": "^1.7.0",
"nyc": "^14.0.0",
"pre-commit": "^1.0.7",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"shelljs": "^0.8.0",
"sinon": "^7.2.4",
"yargs": "^13.1.0"
},
"devEngines": {
"node": "4.x || 5.x || 6.x",
"npm": "2.x || 3.x"
},
"pre-commit": [
"dev:lint",
"dev:test"
],
"author": "Michael Ridgway <mridgway@yahoo-inc.com>",
"license": "BSD-3-Clause"
}