-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
82 lines (82 loc) · 2.65 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
{
"name": "abematv-chrome-extension",
"private": true,
"version": "0.16.19",
"description": "AbemaTVを快適にする非公式の拡張機能",
"scripts": {
"start": "gulp --watch --vendor=chrome",
"build": "gulp pack --production --vendor=chrome",
"build:chrome": "gulp pack --production --vendor=chrome",
"build:firefox": "gulp pack --production --vendor=firefox",
"build:opera": "gulp pack --production --vendor=opera",
"build:edge": "gulp pack --production --vendor=edge",
"dev": "gulp --watch --vendor=chrome",
"dev:chrome": "gulp --watch --vendor=chrome",
"dev:firefox": "gulp --watch --vendor=firefox",
"dev:opera": "gulp --watch --vendor=opera",
"dev:edge": "gulp --watch --vendor=edge",
"lint": "standard",
"version:patch": "gulp patch",
"version:feature": "gulp feature",
"version:release": "gulp release",
"publish": "node publish.js"
},
"standard": {
"globals": [
"chrome"
]
},
"devDependencies": {
"@types/chrome": "0.0.146",
"@types/jquery": "^3.5.6",
"@types/node": "^16.3.1",
"babel-cli": "6.x.x",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"babel-preset-env": "^1.7.0",
"chai": "^4.3.4",
"chromereload": "0.x.x",
"debounce": "^1.2.1",
"del": "6.0.0",
"gulp": "^4.0.2",
"gulp-bump": "^3.2.0",
"gulp-cache": "^1.1.3",
"gulp-clean-css": "^4.2.0",
"gulp-filter": "^7.0.0",
"gulp-git": "^2.9.0",
"gulp-hub": "^4.2.0",
"gulp-if": "3.0.0",
"gulp-imagemin": "7.1.0",
"gulp-json-transform": "^0.4.7",
"gulp-less": "^5.0.0",
"gulp-livereload": "4.x.x",
"gulp-plumber": "^1.2.1",
"gulp-sass": "^5.0.0",
"gulp-sequence": "1.x.x",
"gulp-sourcemaps": "^3.0.0",
"gulp-tag-version": "1.x.x",
"gulp-util": "3.x.x",
"gulp-zip": "^5.1.0",
"json-loader": "^0.5.7",
"require-dir": "^1.2.0",
"standard": "^16.0.3",
"ts-loader": "^9.2.3",
"tslint": "^6.1.3",
"vinyl-named": "1.x.x",
"webpack": "^5.44.0",
"webpack-stream": "^6.1.2",
"yargs": "^17.0.1"
},
"dependencies": {
"babel-register": "^6.26.0",
"chrome-webstore-upload": "^0.4.4",
"cw-log": "^0.2.0",
"gulp-cli": "^2.3.0",
"jquery": "^3.6.0",
"natives": "^1.1.6",
"sass": "^1.35.2",
"typescript": "^4.3.5",
"typescript-require": "^0.3.0",
"xhook": "^1.4.9"
}
}