forked from DubPlus/DubPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.97 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
{
"name": "DubPlus",
"version": "2.0.0",
"description": "Dub+ - A simple script/extension for Dubtrack.fm",
"main": "dubplus.js",
"scripts": {
"sass": "node ./tasks/sassbundle",
"ext": "IS_EXT=true node tasks/rollup.config.js",
"watch:ext": "IS_EXT=true WATCH=true node tasks/rollup.config.js",
"test": "jest -i ./tests --config ./tests/jest.config.js",
"build": "node tasks/rollup.config.js",
"beta": "BUILD=beta node tasks/rollup.config.js",
"release": "BUILD=release node tasks/rollup.config.js",
"start": "WATCH=true node tasks/rollup.config.js",
"firefox": "web-ext run --source-dir ./extensions/Firefox",
"husky_build" : "npm test && npm run build && git add ."
},
"husky": {
"hooks": {
"pre-commit": "./tasks/checkSrc.sh npm run husky_build",
"post-merge": "./tasks/checkSrc.sh npm run husky_build"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/DubPlus/DubPlus.git"
},
"author": "DubPlus",
"license": "MIT",
"bugs": {
"url": "https://github.com/DubPlus/DubPlus/issues"
},
"homepage": "https://dub.plus",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/preset-env": "^7.5.5",
"autoprefixer": "^6.7.3",
"babel-jest": "^24.8.0",
"chalk": "^1.1.3",
"fake-indexeddb": "^2.1.1",
"fs-extra": "^2.0.0",
"git-repo-info": "^1.4.1",
"husky": "^3.0.2",
"jest": "^24.8.0",
"node-sass": "^4.12.0",
"postcss": "^5.2.18",
"preprocess": "^3.1.0",
"request": "^2.88.0",
"rollup": "^1.18.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-strip-code": "^0.2.7",
"rollup-plugin-uglify": "^6.0.2"
},
"dependencies": {
"preact": "^10.0.0"
}
}