-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathpackage.json
66 lines (66 loc) · 1.92 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
{
"name": "yaaw-for-chrome",
"version": "0.2.3",
"description": "Yet Another Aria2 Web Frontend in pure HTML/CSS/Javascirpt Powered by Chrome.",
"main": "background.js",
"scripts": {
"start": "npm run dev",
"dev": "NODE_ENV=development gulp serve",
"build": "NODE_ENV=production gulp publish",
"clean": "gulp clean",
"eslint:fix": "eslint --fix src background.js",
"stylelint:fix": "stylelint \"src/**/*.scss\" --fix",
"lint:fix": "npm run stylelint:fix && npm run eslint:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acgotaku/YAAW-for-Chrome"
},
"keywords": [
"YAAW-for-Chrome",
"aria2"
],
"author": "acgotaku311",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/acgotaku/YAAW-for-Chrome/issues"
},
"homepage": "https://github.com/acgotaku/YAAW-for-Chrome#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"autoprefixer": "^10.4.7",
"del": "^6.0.0",
"eslint": "^8.16.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"esm": "^3.2.25",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-htmlhint": "^4.0.2",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.1",
"gulp-rollup-each": "^4.0.1",
"gulp-sass": "^5.1.0",
"gulp-uglify": "^3.0.2",
"gulp-zip": "^5.0.2",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-pngquant": "^9.0.2",
"postcss": "^8.4.14",
"rollup": "^2.74.1",
"sass": "^1.52.1",
"stylelint": "^14.8.3",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.2.0"
},
"dependencies": {
"vue": "^2.6.14"
}
}