forked from firefox-devtools/devtools-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.73 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.73 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "devtools-launchpad",
"version": "0.0.113",
"license": "MPL-2.0",
"description":
"The Launchpad makes it easy to build a developer tool for Firefox, Chrome, and Node.",
"repository": {
"url": "git://github.com/devtools-html/devtools-core.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/devtools-html/devtools-core/issues"
},
"homepage":
"https://github.com/devtools-html/devtools-core/tree/master/packages/devtools-launchpad#readme",
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"license-check": "devtools-license-check",
"start": "node bin/dev-server",
"test": "jest"
},
"main": "src/index.js",
"bin": {
"start-dev-server": "./src/development-server.js",
"start-firefox": "./bin/firefox-driver.js",
"start-chrome": "./bin/chrome-driver.js"
},
"engineStrict": true,
"engines": {
"node": ">=7.0.0"
},
"dependencies": {
"amd-loader": "0.0.8",
"autoprefixer": "^7.1.2",
"babel-cli": "^6.7.5",
"babel-core": "^6.25.0",
"babel-eslint": "^7.1.0",
"babel-loader": "^7.1.1",
"babel-plugin-module-resolver": "^2.2.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-plugin-webpack-alias": "^2.1.1",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.18.0",
"body-parser": "^1.15.2",
"check-node-version": "^1.1.2",
"chrome-remote-interface": "0.17.0",
"classnames": "^2.2.5",
"co": "=4.6.0",
"css-loader": "^0.26.1",
"debug": "^3.1.0",
"devtools-config": "^0.0.15",
"devtools-connection": "^0.0.8",
"devtools-contextmenu": "^0.0.7",
"devtools-mc-assets": "^0.0.4",
"devtools-modules": "^0.0.33",
"devtools-sprintf-js": "^1.0.3",
"devtools-utils": "^0.0.10",
"express": "^4.13.4",
"express-static": "^1.2.5",
"extract-text-webpack-plugin": "^3.0.0",
"fs-extra": "^2.0.0",
"fuzzaldrin-plus": "^0.4.0",
"geckodriver": "=1.4.0",
"immutable": "^3.7.6",
"json-loader": "^0.5.4",
"md5": "^2.2.1",
"minimist": "^1.2.0",
"mustache": "^2.2.1",
"node-static": "^0.7.7",
"postcss": "^6.0.6",
"postcss-bidirection": "^2.4.0",
"postcss-class-namespace": "^0.1.0",
"postcss-loader": "^2.0.6",
"postcss-url-mapper": "^1.2.0",
"prop-types": "^15.6.0",
"properties-parser": "^0.3.1",
"ps-node": "^0.1.4",
"raw-loader": "^0.5.1",
"react-dom-factories": "^1.0.2",
"react-immutable-proptypes": "^2.1.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"selenium-webdriver": "=3.3.0",
"style-loader": "^0.18.2",
"svg-inline-loader": "^0.8.0",
"svg-inline-react": "3.0.0",
"url-loader": "^0.5.9",
"webpack": "^3.3.0",
"webpack-dev-middleware": "^1.11.0",
"webpack-env-loader-plugin": "^1.0.0",
"webpack-hot-middleware": "^2.18.2",
"ws": "^1.0.1"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"eslint": "^3.12.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flowtype": "^2.20.0",
"eslint-plugin-mozilla": "0.4.3",
"eslint-plugin-react": "^6.7.1",
"ipaddr": "^0.0.9",
"jest": "^19.0.2",
"react-hot-loader": "^1.3.1",
"react-immutable-proptypes": "^2.1.0"
},
"files": [
"assets",
"bin",
"src",
"configs",
"index.html",
"index.js",
"postcss.config.js",
"webpack.config.js",
"webpack.config.devtools.js"
],
"jest": {
"rootDir": "src",
"testMatch": ["**/tests/**/*.js"],
"testPathIgnorePatterns": ["/node_modules/"],
"transformIgnorePatterns": ["node_modules/(?!devtools-)"]
}
}