-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.74 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
88
89
90
91
{
"name": "airdcpp-auto-downloader",
"version": "1.0.0-beta.13",
"description": "BETA TESTING: Extension to add search terms that will be searched in intervals and downloaded when found.",
"homepage": "https://github.com/peps1/airdcpp-auto-downloader",
"license": "MIT",
"author": {
"name": "pepsi"
},
"keywords": [
"airdcpp",
"airdcpp-extensions",
"airdcpp-extensions-public"
],
"bugs": {
"url": "https://github.com/peps1/airdcpp-auto-downloader/issues/"
},
"repository": {
"type": "git",
"url": "https://github.com/peps1/airdcpp-auto-downloader"
},
"scripts": {
"build": "npm run lint && tsc && npm run clean && cross-env NODE_ENV=production webpack",
"clean": "rimraf dist",
"dev": "ts-node-dev --respawn --transpileOnly ./src/main.ts",
"start": "node devtools/watch.js ../dist/main.js",
"test": "nyc mocha --globals global -r ts-node/register src/tests/*.test.ts",
"posttest": "nyc report --reporter=json",
"prepublishOnly": "npm run build",
"lint": "eslint .",
"webpack": "webpack",
"webpack:prod": "cross-env NODE_ENV=production webpack",
"webpack:prof": "cross-env NODE_ENV=production PROFILING=1 webpack"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "^7.18.9",
"@babel/runtime": "^7.20.7",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/bytes": "^3.1.1",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/sinon": "^10.0.13",
"@types/source-map-support": "^0.5.6",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"airdcpp-apisocket": "^2.4.4",
"airdcpp-extension": "^1.5.1",
"airdcpp-extension-settings": "^1.2.1",
"babel-loader": "^9.1.2",
"bytes": "^3.1.2",
"chai": "^4.3.7",
"core-js": "^3.27.1",
"cross-env": "^7.0.3",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.31.11",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sinon": "^15.0.1",
"source-map-support": "^0.5.21",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"main": "dist/main",
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"airdcpp": {
"apiVersion": 1,
"minApiFeatureLevel": 0
},
"dependencies": {
"stormdb": "^0.5.2"
}
}