-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
87 lines (87 loc) · 2.4 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
83
84
85
86
87
{
"name": "webpack-userscript",
"version": "3.2.3",
"description": "A Webpack plugin for userscript projects.",
"repository": {
"type": "git",
"url": "git+https://github.com/momocow/webpack-userscript.git"
},
"author": "MomoCow <momocow.me@gmail.com>",
"keywords": [
"webpack",
"userscript",
"tampermonkey",
"greasemonkey"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/momocow/webpack-userscript/issues"
},
"homepage": "https://github.com/momocow/webpack-userscript#readme",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint lib/ --ext .js,.jsx,.ts,.tsx",
"test": "jest --coverage --collectCoverageFrom \"lib/**/*.ts\"",
"test:dev": "jest",
"clean": "shx rm -rf dist",
"ts-node": "ts-node",
"docs": "typedoc",
"build": "tsc -p tsconfig.build.json",
"commit": "gitmoji -c",
"prepare": "husky install",
"release": "semantic-release"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^10.0.3",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.2",
"@types/ssri": "^7.1.1",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"express": "^4.18.2",
"gitmoji-cli": "^7.0.3",
"husky": "^8.0.3",
"jest": "29.4.1",
"jest-extended": "^3.2.3",
"lint-staged": "^13.1.0",
"memfs": "^3.4.13",
"prettier": "^2.8.3",
"semantic-release": "^21.0.1",
"semantic-release-gitmoji": "^1.6.4",
"shx": "^0.3.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typedoc": "^0.23.24",
"typescript": "^4.9.4",
"typescript-memoize": "^1.1.1",
"webpack": "^5.75.0"
},
"dependencies": {
"class-transformer": "0.5.1",
"class-validator": "^0.14.0",
"node-fetch": "^2.6.9",
"p-limit": "^3.1.0",
"reflect-metadata": "^0.1.13",
"ssri": "^10.0.1",
"table": "^6.8.1",
"tapable": "^2.2.1",
"tslib": "^2.0.0"
},
"peerDependencies": {
"webpack": "5"
}
}