-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.29 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
{
"name": "airdcpp-share-monitor",
"version": "1.2.0",
"description": "Real time share monitoring",
"license": "MIT",
"author": {
"name": "maksis"
},
"keywords": [
"airdcpp",
"airdcpp-extensions",
"airdcpp-extensions-public"
],
"bugs": "https://github.com/airdcpp-web/airdcpp-share-monitor/issues/",
"repository": {
"type": "git",
"url": "https://github.com/airdcpp-web/airdcpp-share-monitor/"
},
"scripts": {
"build": "npm run clean && cross-env NODE_ENV=production webpack",
"clean": "rimraf dist",
"start": "node devtools/watch.js ../dist/main.js",
"test": "jest --detectOpenHandles --runInBand",
"prepublishOnly": "npm run build",
"webpack": "webpack"
},
"devDependencies": {
"@types/jest": "^29.2.0",
"airdcpp-extension": "^2.0.0-beta",
"airdcpp-extension-settings": "^1.2.1",
"cross-env": "^7.0.3",
"jest": "^29.2.2",
"jest-cli": "^29.2.2",
"node-watch": "0.7.3",
"nodemon": "^3.1.7",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"typescript": "^5.0.2",
"wait-for-expect": "^3.0.2",
"webpack": "^5.74.0",
"webpack-cli": "^5.0.1"
},
"main": "dist/main.js",
"airdcpp": {
"apiVersion": 1,
"minApiFeatureLevel": 6
},
"pre-commit": [
"test"
]
}