forked from refined-github/refined-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.05 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
{
"scripts": {
"test": "xo && cross-env BABEL_ENV=testing ava && run-s build:minified",
"build": "webpack",
"build:minified": "cross-env NODE_ENV=production webpack",
"watch": "webpack --watch",
"watch:sourcemap": "webpack --watch --devtool eval-cheap-module-source-map",
"release": "run-s build:minified"
},
"dependencies": {
"copy-text-to-clipboard": "^1.0.3",
"debounce-fn": "^1.0.0",
"dom-chef": "^3.0.0",
"dom-loaded": "^1.0.0",
"element-ready": "^2.2.0",
"github-injection": "^1.0.1",
"github-reserved-names": "^1.0.6",
"jquery": "^3.2.1",
"linkify-issues": "^1.3.0",
"linkify-urls": "^1.3.0",
"onetime": "^2.0.1",
"select-dom": "^4.1.0",
"shorten-repo-url": "^1.1.0",
"to-markdown": "^3.1.0",
"to-semver": "^1.1.0",
"webext-dynamic-content-scripts": "github:bfred-it/webext-dynamic-content-scripts#debug",
"webext-options-sync": "^0.12.0",
"webextension-polyfill": "^0.2.1"
},
"devDependencies": {
"ava": "*",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"chrome-webstore-upload-cli": "^1.0.0",
"common-tags": "^1.4.0",
"copy-webpack-plugin": "^4.2.0",
"cross-env": "^5.0.5",
"dot-json": "^1.0.3",
"npm-run-all": "^4.1.1",
"uglifyjs-webpack-plugin": "^1.0.0-beta.1",
"webext": "^1.9.1-with-submit.1",
"webpack": "^3.7.1",
"xo": "*"
},
"xo": {
"envs": [
"browser",
"jquery"
],
"rules": {
"import/no-unassigned-import": 0,
"no-unused-vars": [
2,
{
"varsIgnorePattern": "^h$"
}
]
},
"ignores": [
"refined-github.safariextension/**"
],
"globals": [
"browser"
]
},
"ava": {
"files": [
"test/*.js"
],
"source": [
"refined-github.safariextension/*.js"
],
"require": [
"babel-register"
]
},
"babel": {
"plugins": [
[
"transform-react-jsx",
{
"pragma": "h",
"useBuiltIns": true
}
]
],
"env": {
"testing": {
"plugins": [
"transform-es2015-modules-commonjs"
]
}
}
}
}