-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
63 lines (63 loc) · 1.47 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
{
"name": "compat-report",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build-data": "node pre-build/build-data.js",
"build": "webpack && mkdir -p archives && cd dist && zip -r ../archives/compat-report.zip *",
"watch": "webpack --watch",
"test": "jest && node test/utils/coverage.js",
"test-dev": "jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"postcss": "^6.0.14",
"postcss-selector-parser": "^3.1.1",
"postcss-value-parser": "^3.3.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"css-loader": "^0.28.7",
"cssbeautify": "^0.3.1",
"istanbul-cobertura-badger": "^1.3.1",
"jest": "^21.2.1",
"mdn-browser-compat-data": "0.0.16",
"object-path": "^0.11.4",
"preact": "^8.2.6",
"preact-redux": "^2.0.3",
"prismjs": "^1.8.4",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"semver-compare": "^1.0.0",
"style-loader": "^0.19.0",
"webpack": "^3.8.1"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"src/**/*.jsx"
],
"coverageReporters": [
"cobertura",
"html",
"text"
],
"testMatch": [
"*/**/test/**/*.test.js"
]
},
"standard": {
"ignore": [
"dist/**/*",
"test/**/*",
"temp_test/**/*"
]
}
}