forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.09 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
{
"name": "debugger.html",
"version": "0.0.8",
"license": "MPL-2.0",
"repository": {
"url": "git://github.com/devtools-html/debugger.html.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/devtools-html/debugger.html/issues"
},
"homepage": "https://github.com/devtools-html/debugger.html#readme",
"engineStrict": true,
"engines": {
"node": ">=6.9.0"
},
"scripts": {
"start": "node bin/dev-server",
"start-app": "TARGET=application node bin/dev-server",
"flow": "flow",
"lint": "npm run lint-css -s; npm run lint-js -s",
"lint-css": "stylelint src/components/*.css packages/devtools-local-toolbox/**/*.css",
"lint-js": "eslint src/**/*.js packages/devtools-local-toolbox/src/**/*.js",
"lint-fix": "npm run lint-js -- --fix",
"test": "node src/test/node-unit-tests.js",
"test-all": "npm run test; npm run lint; npm run flow; npm run firefox-unit-test",
"mocha-server": "node bin/mocha-server.js",
"firefox-unit-test": "node bin/firefox-driver --test",
"firefox": "node bin/firefox-driver --start",
"mochitests-watch": "MOCHITESTS=true TARGET=firefox-panel webpack --watch",
"build-docs": "documentation build --format html --sort-order alpha --shallow --document-exported --output docs/reference/ src/types.js src/utils/ src/reducers/ src/actions/ src/test/mochitest/head.js",
"prepush": "npm run lint; node src/test/node-unit-tests.js --dots",
"flow-coverage": "flow-coverage-report -i 'src/actions/*.js' -i 'src/reducers/*.js' -i 'src/utils/*.js' -t html -t text",
"postinstall": "lerna bootstrap"
},
"dependencies": {
"classnames": "^2.2.5",
"co": "=4.6.0",
"codemirror": "^5.1.0",
"devtools-config": "^0.0.9",
"devtools-local-toolbox": "^0.0.10",
"devtools-modules": "^0.0.9",
"devtools-network-request": "^0.0.9",
"devtools-sham-modules": "^0.0.9",
"devtools-client-adapters": "0.0.1",
"documentation": "^4.0.0-beta11",
"eslint": "^3.10.0",
"expect.js": "^0.3.1",
"firefox-profile": "^0.4.0",
"flow-bin": "^0.35.0",
"flow-coverage-report": "^0.2.0",
"fuzzaldrin-plus": "^0.3.1",
"geckodriver": "^1.2.0",
"glob": "^7.0.3",
"husky": "^0.11.7",
"immutable": "^3.7.6",
"invariant": "^2.2.1",
"lodash": "^4.13.1",
"md5": "^2.2.1",
"minimist": "^1.2.0",
"mocha": "^3.1.2",
"mocha-circleci-reporter": "0.0.1",
"mock-require": "^2.0.0",
"pretty-fast": "^0.2.0",
"react": "=0.14.7",
"react-dom": "=0.14.7",
"react-inlinesvg": "^0.5.3",
"react-redux": "4.4.5",
"redux": "3.5.2",
"selenium-webdriver": "^3.0.1",
"source-map": "^0.5.6",
"stylelint": "^7.4.2",
"svg-inline-react": "^1.0.2",
"serve-index": "^1.8.0",
"webpack": "1.13.1",
"workerjs": "github:jlongster/workerjs",
"ws": "^1.0.1",
"lerna": "jasonlaster/lerna"
},
"files": [
"src",
"assets"
],
"greenkeeper": {
"ignore": [
"react",
"react-dom",
"react-redux",
"redux",
"codemirror"
]
},
"main": "src/main.js",
"author": "Jason Laster <[email protected]>"
}