forked from firefox-devtools/devtools-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.44 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
{
"name": "devtools-core",
"version": "0.0.1",
"description": "Collection of devtools packages",
"scripts": {
"flow": "flow",
"license-check": "lerna run license-check",
"lint": "yarn lint-css; a=$?; yarn lint-js; b=$?; test $a -eq 0 -a $b -eq 0",
"lint-css": "stylelint packages/devtools-launchpad/**/*.css",
"lint-js": "eslint packages/devtools-launchpad/src",
"nom": "rm -rf node_modules/ packages/*/node_modules/ && yarn install",
"prepush": "yarn lint && yarn flow",
"postinstall": "lerna bootstrap",
"test": "lerna run test"
},
"repository": {
"url": "git+https://github.com/jasonLaster/devtools-core.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/jasonLaster/devtools-core/issues"
},
"homepage": "https://github.com/jasonLaster/devtools-core#readme",
"dependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.17.0",
"babel-eslint": "^7.1.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"eslint": "^3.12.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flowtype": "^2.20.0",
"eslint-plugin-jest": "^20.0.1",
"eslint-plugin-mozilla": "0.2.3",
"eslint-plugin-react": "^6.7.1",
"husky": "^0.12.0",
"stylelint": "^7.4.2"
},
"devDependencies": {
"devtools-license-check": "^0.3.0",
"flow-bin": "^0.48",
"ipaddr.js": "=1.3.0",
"lerna": "^2.4.0"
}
}