forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.53 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
{
"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": "yarn run lint-css -s && yarn run lint-js -s",
"lint-css": "stylelint src/components/*.css",
"lint-js": "eslint src/**/*.js",
"lint-fix": "yarn run lint-js -- --fix",
"test": "node src/test/node-unit-tests.js",
"test-all": "yarn run test; yarn run lint; yarn run flow",
"firefox": "./node_modules/.bin/start-firefox --start --location https://devtools-html.github.io/debugger-examples/",
"chrome": "./node_modules/.bin/start-chrome --location https://devtools-html.github.io/debugger-examples/",
"copy-assets": "node bin/copy-assets",
"copy-assets-watch": "node bin/copy-assets --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",
"flow-coverage": "flow-coverage-report -i 'src/actions/*.js' -i 'src/reducers/*.js' -i 'src/utils/*.js' -t html -t text",
"prepush": "yarn run lint && yarn run test -- --dots",
"postmerge": "bin/post-merge"
},
"dependencies": {
"codemirror": "^5.1.0",
"devtools-launchpad": "0.0.24",
"devtools-reps": "^0.0.2",
"documentation": "^4.0.0-beta11",
"eslint": "^3.12.0",
"expect.js": "^0.3.1",
"firefox-profile": "^0.4.0",
"flow-bin": "^0.38.0",
"flow-coverage-report": "^0.2.0",
"fuzzaldrin-plus": "^0.4.1",
"glob": "^7.0.3",
"husky": "^0.12.0",
"lodash": "^4.13.1",
"md5": "^2.2.1",
"mocha": "^3.1.2",
"mocha-circleci-reporter": "0.0.2",
"mock-require": "^2.0.0",
"pretty-fast": "^0.2.0",
"react": "=0.14.7",
"source-map": "^0.5.6",
"stylelint": "^7.4.2",
"svg-inline-react": "^1.0.2",
"webpack": "1.14.0",
"workerjs": "github:jlongster/workerjs"
},
"files": [
"src",
"assets"
],
"greenkeeper": {
"ignore": [
"react",
"react-dom",
"react-redux",
"redux",
"codemirror"
]
},
"main": "src/main.js",
"author": "Jason Laster <[email protected]>"
}