forked from refined-github/refined-github
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 3.61 KB
/
package.json
File metadata and controls
133 lines (133 loc) · 3.61 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"private": true,
"scripts": {
"lint": "run-p --silent lint:*",
"lint:js": "xo",
"lint:css": "stylelint source/*.css",
"lint-fix": "run-p --silent 'lint:* -- --fix'",
"test": "run-p --silent test:js lint:* build",
"test:js": "ava",
"build": "webpack --mode=production",
"watch": "webpack --mode=development --watch",
"watch:firefox": "web-ext run --source-dir=distribution",
"release:amo": "cd distribution && web-ext-submit",
"release:cws": "cd distribution && webstore upload --auto-publish",
"release": "run-s build update-version save-url release:*",
"save-url": "echo https://github.com/$TRAVIS_REPO_SLUG/tree/$TRAVIS_COMMIT > distribution/SOURCE_URL",
"update-version": "VERSION=$(utc-version); echo $VERSION; dot-json distribution/manifest.json version $VERSION",
"can-release": "if [ \"$TRAVIS_EVENT_TYPE\" = cron ] && [ $(git rev-list -n 1 --since=\"26 hours ago\" master) ]; then echo :ship-it:; else false; fi"
},
"dependencies": {
"copy-text-to-clipboard": "^2.0.0",
"debounce-fn": "^3.0.1",
"delegate-it": "^1.1.0-7",
"dom-chef": "^3.6.0",
"dom-loaded": "^1.1.0",
"doma": "^1.0.3",
"element-ready": "^3.1.0",
"fit-textarea": "^1.1.0",
"github-reserved-names": "^1.1.5",
"indent-textarea": "^1.0.4",
"insert-text-textarea": "^1.0.3",
"intervalometer": "^1.0.4",
"linkify-issues": "^1.3.0",
"linkify-urls": "^2.2.0",
"onetime": "^5.0.0",
"p-memoize": "^3.0.0",
"select-dom": "^5.0.1",
"shorten-repo-url": "^1.5.0",
"tiny-version-compare": "^0.10.0",
"type-fest": "^0.4.1",
"webext-domain-permission-toggle": "^0.1.0",
"webext-dynamic-content-scripts": "^5.0.2-0",
"webext-options-sync": "^0.15.5",
"webextension-polyfill": "^0.4.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^0.3.0",
"@types/codemirror": "0.0.74",
"@types/debounce-fn": "^3.0.0",
"@types/dom-loaded": "^1.0.0",
"@types/element-ready": "^2.1.0",
"@types/firefox-webext-browser": "^67.0.0",
"@types/jsdom": "^12.2.3",
"@types/react": "^16.8.14",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"ava": "^1.4.0",
"chrome-webstore-upload-cli": "^1.2.0",
"copy-webpack-plugin": "^5.0.2",
"dot-json": "^1.0.4",
"eslint": "^5.16.0",
"eslint-config-xo-typescript": "^0.10.1",
"jsdom": "^15.0.0",
"npm-run-all": "^4.1.3",
"size-plugin": "^1.2.0",
"stylelint": "^10.0.1",
"stylelint-config-xo": "^0.14.0",
"terser-webpack-plugin": "^1.2.3",
"ts-loader": "^5.3.3",
"ts-node": "^8.1.0",
"typescript": "^3.4.4",
"utc-version": "^1.1.0",
"web-ext": "^3.0.0",
"web-ext-submit": "^3.0.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"xo": "^0.24.0"
},
"xo": {
"extends": "xo-typescript",
"envs": [
"browser"
],
"extensions": [
"js",
"ts",
"tsx"
],
"rules": {
"import/no-unassigned-import": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"varsIgnorePattern": "^React$"
}
],
"@typescript-eslint/restrict-plus-operands": "off",
"@typescript-eslint/promise-function-async": "off",
"import/no-unresolved": "warn"
},
"globals": [
"browser"
]
},
"ava": {
"files": [
"test/*.ts"
],
"babel": false,
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"stylelint": {
"extends": "stylelint-config-xo",
"rules": {
"selector-type-no-unknown": null,
"declaration-no-important": null,
"property-no-vendor-prefix": null,
"property-blacklist": null,
"selector-class-pattern": null,
"selector-id-pattern": null,
"rule-empty-line-before": null,
"at-rule-empty-line-before": null
}
},
"engines": {
"node": ">=10.0.0"
}
}