forked from yahoo/fluxible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.61 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": {
"build": "lerna bootstrap --hoist --since --include-filtered-dependencies --no-ci",
"clean": "lerna exec -- rm -rf node_modules dist",
"cover": "nyc lerna run cover --since",
"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"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.11.5",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"async": "^3.0.1",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.0.2",
"coveralls": "^3.1.0",
"create-react-class": "^15.5.1",
"es6-promise": "^4.0.2",
"eslint": "^7.1.0",
"eslint-plugin-react": "^7.0.0",
"fluxible": "^1.0.0",
"jsdom": "^17.0.0",
"lerna": "^4.0.0",
"lodash": "^4.17.5",
"mocha": "^9.0.2",
"mockery": "^2.1.0",
"nyc": "^15.1.0",
"pre-commit": "^1.0.7",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"shelljs": "^0.8.0",
"sinon": "^11.1.1",
"yargs": "^17.1.0"
},
"pre-commit": [
"dev:lint",
"dev:test"
],
"author": "Michael Ridgway <mridgway@yahoo-inc.com>",
"license": "BSD-3-Clause"
}