-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.73 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
92
93
94
{
"name": "airdcpp-advanced-sharing",
"version": "1.0.0",
"description": "Advanced sharing options, batch hashing with stop or resume option",
"homepage": "https://github.com/peps1/airdcpp-advanced-sharing",
"license": "MIT",
"author": {
"name": "pepsi"
},
"keywords": [
"airdcpp",
"airdcpp-extensions",
"airdcpp-extensions-public"
],
"bugs": {
"url": "https://github.com/peps1/airdcpp-advanced-sharing/issues/"
},
"repository": {
"type": "git",
"url": "https://github.com/peps1/airdcpp-advanced-sharing"
},
"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 -r ts-node/register src/tests/*.ts",
"posttest": "nyc report --reporter=json",
"prepublishOnly": "npm run build",
"lint": "eslint .",
"webpack": "webpack"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@babel/runtime": "^7.12.5",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/bytes": "^3.1.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.20",
"@types/prettyjson": "0.0.29",
"@types/sinon": "^9.0.10",
"@types/source-map-support": "^0.5.3",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"babel-loader": "^8.2.2",
"bytes": "^3.1.0",
"chai": "^4.2.0",
"core-js": "^3.8.2",
"cross-env": "^7.0.3",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.13",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-standard": "^4.1.0",
"husky": "^4.3.7",
"mocha": "^8.2.1",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sinon": "^9.2.3",
"source-map-support": "^0.5.19",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1"
},
"dependencies": {
"airdcpp-apisocket": "^2.4.1",
"airdcpp-extension": "^1.5.0",
"airdcpp-extension-settings": "^1.2.1"
},
"main": "dist/main",
"types": "dist/main",
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"airdcpp": {
"apiVersion": 1,
"minApiFeatureLevel": 5
}
}