-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.67 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
{
"name": "airdcpp-release-validator",
"version": "1.4.0",
"description": "Scan downloaded and shared release directories for missing/extra files",
"license": "MIT",
"author": {
"name": "maksis"
},
"keywords": [
"airdcpp",
"airdcpp-extensions",
"airdcpp-extensions-public"
],
"bugs": "https://github.com/airdcpp-web/airdcpp-release-validator/issues/",
"repository": {
"type": "git",
"url": "https://github.com/airdcpp-web/airdcpp-release-validator"
},
"scripts": {
"build": "npm run clean && npm run webpack:prod",
"clean": "rimraf dist",
"start": "node devtools/watch.js ../dist/main.js",
"prepublishOnly": "npm run build",
"webpack": "webpack",
"webpack:prod": "cross-env NODE_ENV=production webpack",
"webpack:prof": "cross-env NODE_ENV=production PROFILING=1 webpack",
"test": "jest"
},
"devDependencies": {
"@types/invariant": "^2.2.35",
"@types/jest": "^29.0.2",
"@types/node-fetch": "^2.6.4",
"airdcpp-extension": "^2.0.0-beta",
"airdcpp-extension-settings": "^1.2.1",
"async-file": "^2.0.2",
"cross-env": "^7.0.3",
"eol": "^0.10.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.0.3",
"jest-cli": "^29.0.3",
"node-fetch": "^3.3.2",
"nodemon": "^3.1.4",
"prettier": "^3.2.5",
"rimraf": "^5.0.8",
"source-map-support": "^0.5.21",
"ts-jest": "^29.0.0",
"ts-loader": "^9.3.1",
"typescript": "^5.0.2",
"webpack": "^5.74.0",
"webpack-cli": "^5.0.1"
},
"main": "dist/index.js",
"airdcpp": {
"apiVersion": 1,
"minApiFeatureLevel": 4,
"signalReady": true
},
"pre-commit": [
"test"
]
}