forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.68 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
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
{
"name": "debugger.html",
"version": "0.0.5",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git://github.com/devtools-html/debugger.html.git"
},
"bugs": {
"url": "https://github.com/devtools-html/debugger.html/issues"
},
"homepage": "https://github.com/devtools-html/debugger.html#readme",
"scripts": {
"flow": "flow",
"start": "node bin/development-server",
"lint": "npm run lint-css -s; npm run lint-js -s",
"lint-css": "stylelint public/js/components/*.css",
"lint-js": "eslint public/js",
"test": "node public/js/test/node-unit-tests.js",
"test-all": "npm run test; npm run lint; npm run flow; npm run cypress; npm run karma",
"test-paths": "mocha --compilers js:babel-register",
"mocha-server": "node bin/mocha-server.js",
"cypress-server": "node bin/cypress-server.js",
"karma": "./node_modules/.bin/karma start --single-run",
"storybook": "start-storybook -p 9001 -s public",
"firefox": "node bin/firefox-driver --start",
"cypress": "./node_modules/.bin/cypress run --port 2021",
"cypress-intermittents": "for i in {1..100}; do time npm run cypress; done | tee cypress-run.log",
"prepublish": "webpack"
},
"dependencies": {
"classnames": "^2.2.5",
"codemirror": "^5.1.0",
"express": "^4.13.4",
"fuzzaldrin-plus": "^0.3.1",
"immutable": "^3.7.6",
"invariant": "^2.2.1",
"lodash": "^4.13.1",
"pretty-fast": "^0.2.0",
"react": "=0.14.7",
"react-dom": "=0.14.7",
"react-immutable-proptypes": "^1.7.1",
"react-inlinesvg": "^0.5.3",
"react-redux": "4.4.5",
"redux": "3.5.2",
"source-map": "^0.5.6",
"svg-inline-loader": "^0.6.1",
"svg-inline-react": "^1.0.2",
"tcomb": "^3.1.0"
},
"devDependencies": {
"@kadira/storybook": "^1.17.1",
"amd-loader": "0.0.5",
"babel": "^6.5.2",
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-module-alias": "^1.4.0",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-plugin-transform-es2015-block-scoping": "^6.7.1",
"babel-plugin-transform-es2015-destructuring": "^6.6.5",
"babel-plugin-transform-es2015-parameters": "^6.7.0",
"babel-plugin-transform-es2015-spread": "^6.6.5",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"body-parser": "^1.15.0",
"co": "=4.6.0",
"css-loader": "^0.23.1",
"cypress-cli": "^0.11.0",
"eslint": "^3.0.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flow-vars": "^0.4.0",
"eslint-plugin-flowtype": "^2.3.0",
"eslint-plugin-mozilla": "0.0.3",
"eslint-plugin-react": "^5.0.1",
"expect.js": "^0.3.1",
"extract-text-webpack-plugin": "^1.0.1",
"firefox-profile": "^0.4.0",
"flow-bin": "^0.29.0",
"glob": "^7.0.3",
"install": "^0.8.1",
"json-loader": "^0.5.4",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-webpack": "^1.7.0",
"minimist": "^1.2.0",
"mocha": "^2.4.5",
"mocha-circleci-reporter": "0.0.1",
"net": "^1.0.2",
"node-static": "^0.7.7",
"npm": "^3.8.8",
"react-hot-loader": "^1.3.0",
"rimraf": "^2.5.2",
"selenium-webdriver": "^2.53.2",
"style-loader": "^0.13.1",
"stylelint": "^6.2.2",
"webpack": "1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.0",
"workerjs": "^0.1.1",
"ws": "^1.0.1"
},
"files": [
"public"
]
}