forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.81 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
114
{
"name": "debugger.html",
"version": "0.1.0",
"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",
"links": "ls -l node_modules/ | grep ^l || echo 'no linked packages'",
"lint": "yarn run lint-css -s && yarn run lint-js -s && yarn run lint-md",
"lint-css": "stylelint \"src/components/**/*.css\"",
"lint-js": "eslint \"src/**/*.js\"",
"lint-md": "remark -q *.md src/**/*.md configs/*.md docs/**/*.md",
"lint-fix": "yarn run lint-js -- --fix",
"test": "jest --forceExit",
"test-all": "yarn run test; yarn run lint; yarn run flow",
"firefox": "start-firefox --start --location https://devtools-html.github.io/debugger-examples/",
"chrome": "start-chrome --location https://devtools-html.github.io/debugger-examples/",
"copy-assets": "node bin/copy-assets --symlink",
"copy-assets-watch": "node bin/copy-assets --watch --symlink",
"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 --threshold 62 -i 'src/actions/*.js' -i 'src/reducers/*.js' -i 'src/utils/*.js' -i 'src/components/*.js' -i 'src/components/**/*.js' -t html -t text",
"flow-utils": "flow-coverage-report -i 'src/utils/*.js' -t text",
"flow-redux": "flow-coverage-report -i 'src/reducers/*.js' -i 'src/actions/*.js' -t text",
"flow-react": "flow-coverage-report -i 'src/components/**/*.js' -t text",
"prepush": "yarn run lint && yarn test && yarn run flow",
"postmerge": "node bin/post-merge.js",
"nom": "rm -rf node_modules yarn.lock; yarn install"
},
"dependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"babel-traverse": "^6.22.1",
"babel-types": "^6.22.0",
"babylon": "^6.15.0",
"codemirror": "^5.1.0",
"devtools-launchpad": "^0.0.56",
"devtools-reps": "^0.4.0",
"devtools-source-map": "^0.2.1",
"documentation": "^4.0.0-beta11",
"eslint": "^3.12.0",
"expect.js": "^0.3.1",
"firefox-profile": "^0.4.8",
"flow-bin": "^0.40.0",
"fuzzaldrin-plus": "^0.4.1",
"glob": "^7.0.3",
"husky": "^0.13.1",
"jest-junit-reporter": "^1.0.1",
"lodash": "^4.17.4",
"md5": "^2.2.1",
"mocha": "^3.1.2",
"mock-require": "^2.0.0",
"pretty-fast": "^0.2.0",
"react": "=15.3.2",
"react-dom": "=15.3.2",
"rimraf": "^2.6.1",
"stylelint": "^7.8.0",
"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]>",
"devDependencies": {
"jest": "^19.0.2",
"remark-cli": "^3.0.0",
"remark-lint": "^6.0.0",
"remark-preset-lint-recommended": "^1.0.0",
"remark-validate-links": "^6.0.0"
},
"jest": {
"rootDir": "src",
"testMatch": [
"**/tests/**/*.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/test/"
],
"transformIgnorePatterns": [
"/node_modules/(?!devtools-source-map)"
],
"setupFiles": [
"<rootDir>/test/tests-boot.js"
],
"moduleNameMapper": {
"\\.(css|svg)$": "<rootDir>/test/__mocks__/styleMock.js"
}
}
}