-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
40 lines (40 loc) · 1.33 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
{
"name": "greasemonkey",
"version": "1.0.0",
"description": "该项目为本人所写的 Greasemonkey 脚本",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-novel": "npx webpack --config webpack.config.js && cd 小说下载器/ && cat meta.js intro.js bundle.js > 小说下载器.user.js && cat 小说下载器.user.js | sed -e 's/enableDebug = false/enableDebug = true/g' > 小说下载器.local.user.js && rm bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yingziwu/Greasemonkey.git"
},
"author": "bgme",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/yingziwu/Greasemonkey/issues"
},
"homepage": "https://github.com/yingziwu/Greasemonkey#readme",
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^7.4.0",
"eslint-config-alloy": "^3.7.3",
"prettier": "^2.0.5",
"ts-loader": "^7.0.5",
"typescript": "^3.9.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"core-js": "3"
}
}