-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
86 lines (86 loc) · 1.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
78
79
80
81
82
83
84
85
86
{
"private": true,
"scripts": {
"test": "cross-env BABEL_ENV=testing ava",
"webpack": "cross-env node -r babel-register node_modules/.bin/webpack",
"watch": "npm run webpack -- --mode=development --watch",
"build": "npm run webpack -- --mode=production"
},
"dependencies": {
"dom-chef": "^3.1.0",
"dom-loaded": "^1.0.1",
"element-ready": "^2.2.1",
"jsdom": "^11.10.0",
"query-string": "^6.1.0",
"select-dom": "^4.1.1"
},
"devDependencies": {
"ava": "*",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-register": "^6.26.0",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.1.4",
"prettier": "^1.12.1",
"stylelint": "^9.2.0",
"stylelint-config-xo": "^0.8.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webextension-polyfill": "^0.2.1",
"webpack": "^4.7.0",
"webpack-cli": "^2.1.2",
"xo": "*"
},
"xo": {
"rules": {
"no-unused-vars": [
2,
{
"varsIgnorePattern": "^h$"
}
],
"object-curly-spacing": [
"error",
"always"
]
},
"envs": [
"browser"
],
"globals": [
"browser"
]
},
"ava": {
"files": [
"test/*.js"
],
"require": [
"babel-register"
]
},
"babel": {
"plugins": [
[
"transform-react-jsx",
{
"pragma": "h",
"useBuiltIns": true
}
],
"transform-es2015-modules-commonjs"
],
"env": {
"development": {
"plugins": []
},
"testing": {
"plugins": []
}
}
},
"stylelint": {
"extends": "stylelint-config-xo",
"rules": {}
}
}