forked from ozsun88/YAAW-for-Chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.15 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.15 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
{
"name": "yaaw-for-chrome",
"version": "0.2.0",
"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",
"lint:js": "gulp lint:js",
"lint:css": "gulp lint:css",
"eslint:fix": "eslint --fix src",
"stylelint:fix": "stylefmt -r \"src/**/*.scss\" && stylelint \"src/**/*.scss\" -s scss",
"test": "npm run lint:js && npm run lint:css"
},
"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": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"autoprefixer": "^9.5.1",
"del": "^4.1.1",
"eslint": "^5.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"gulp": "^4.0.1",
"gulp-clean-css": "^4.2.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^5.0.0",
"gulp-htmlhint": "^2.2.1",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^5.0.3",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^8.0.0",
"gulp-rollup-each": "^3.0.0",
"gulp-sass": "^4.0.2",
"gulp-stylelint": "^9.0.0",
"gulp-uglify": "^3.0.2",
"gulp-zip": "^4.2.0",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngquant": "^7.0.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-replace": "^2.2.0",
"stylefmt": "^6.0.3",
"stylelint": "^10.0.1",
"stylelint-config-sass-guidelines": "^6.0.0",
"stylelint-order": "^3.0.0",
"stylelint-scss": "^3.6.0"
},
"dependencies": {
"vue": "^2.6.10"
}
}