This repository has been archived by the owner on Jan 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
91 lines (91 loc) · 1.95 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
{
"scripts": {
"lint": "xo && stylelint source/**/*.css",
"test": "npm run lint && ava && npm run build",
"build": "webpack --mode=production",
"watch": "webpack --mode=development --watch",
"release:cws": "cd distribution && webstore upload --auto-publish",
"release": "run-s build update-version release:cws",
"update-version": "VERSION=$(utc-version); echo $VERSION; dot-json distribution/manifest.json version $VERSION"
},
"dependencies": {
"ajv": "^6.10.0",
"dom-chef": "^3.6.0",
"dom-loaded": "^1.2.0",
"dompurify": "^1.0.10",
"element-ready": "^3.0.0",
"jquery": "^3.4.1",
"lodash.debounce": "^4.0.8",
"lodash.groupby": "^4.6.0",
"lodash.pick": "^4.4.0",
"lodash.sortby": "^4.7.0",
"prismjs": "^1.16.0",
"select-dom": "^5.1.0",
"webext-options-sync": "^0.16.0",
"webextension-polyfill": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/register": "^7.4.4",
"ava": "^1.4.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"chrome-webstore-upload-cli": "^1.1.1",
"copy-webpack-plugin": "^5.0.3",
"dot-json": "^1.1.0",
"npm-run-all": "^4.1.1",
"size-plugin": "^1.2.0",
"stylelint": "^10.0.1",
"stylelint-config-xo": "^0.15.0",
"utc-version": "^1.0.0",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"xo": "^0.24.0"
},
"xo": {
"parser": "babel-eslint",
"envs": [
"browser",
"jquery"
],
"rules": {
"import/no-unassigned-import": 0,
"no-unused-vars": [
2,
{
"varsIgnorePattern": "^h$"
}
]
},
"globals": [
"browser"
]
},
"ava": {
"files": [
"test/*.js"
],
"require": [
"@babel/register"
]
},
"babel": {
"plugins": [
[
"@babel/plugin-transform-react-jsx",
{
"pragma": "h",
"useBuiltIns": true
}
]
]
},
"stylelint": {
"extends": "stylelint-config-xo",
"rules": {
"declaration-no-important": null,
"selector-class-pattern": null
}
}
}