forked from firefox-devtools/devtools-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.24 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
{
"name": "devtools-core",
"version": "0.0.1",
"description": "Collection of devtools packages",
"scripts": {
"lint": "yarn run lint-css -s; yarn run lint-js -s",
"lint-css": "stylelint packages/devtools-launchpad/**/*.css",
"lint-js": "eslint packages/devtools-launchpad/src packages/devtools-client-adapters/src",
"prepush": "yarn run lint;",
"postinstall": "lerna bootstrap"
},
"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-mozilla": "0.2.3",
"eslint-plugin-react": "^6.7.1",
"husky": "^0.12.0",
"react": "=0.14.7",
"react-dom": "=0.14.7",
"react-hot-loader": "^1.3.1",
"stylelint": "^7.4.2"
},
"devDependencies": {
"lerna": "2.0.0-beta.31"
}
}