forked from sindresorhus/notifier-for-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.54 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
{
"private": true,
"scripts": {
"lint": "xo && stylelint --fix source/*.css",
"test": "npm run lint && cross-env BABEL_ENV=testing ava --verbose && npm run build",
"build": "webpack --mode=production",
"watch": "webpack --mode=development --watch",
"release": "npm run build && npm run update-version && webstore upload --source=distribution --auto-publish",
"update-version": "VERSION=$(utc-version); echo $VERSION; dot-json distribution/manifest.json version $VERSION"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"chrome-webstore-upload-cli": "^1.1.1",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
"dot-json": "^1.0.4",
"esm": "^3.0.72",
"lodash.merge": "^4.6.1",
"moment": "^2.22.2",
"p-immediate": "^2.1.0",
"sinon": "^6.1.4",
"sinon-chrome": "^2.3.2",
"stylelint": "^9.3.0",
"stylelint-config-xo": "^0.9.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"utc-version": "^1.1.0",
"webext-options-sync": "^0.15.2",
"webextension-polyfill": "^0.3.0",
"webpack": "^4.16.2",
"webpack-cli": "^3.1.0",
"xo": "^0.21.1"
},
"ava": {
"files": [
"test/*-test.js"
],
"require": [
"esm",
"./test/fixture/globals.js"
]
},
"xo": {
"envs": [
"browser"
],
"ignores": [
"distribution"
],
"rules": {
"no-unused-vars": [
2,
{
"varsIgnorePattern": "^h$"
}
]
},
"globals": [
"browser"
]
},
"stylelint": {
"extends": "stylelint-config-xo"
}
}