-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.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
{
"name": "airdcpp-message-emailer",
"version": "1.0.5",
"description": "Sends email summaries with unread hub/private messages",
"license": "MIT",
"author": {
"name": "maksis"
},
"keywords": [
"airdcpp",
"airdcpp-extensions",
"airdcpp-extensions-public"
],
"bugs": "https://github.com/maksis/airdcpp-message-emailer/issues/",
"repository": {
"type": "git",
"url": "https://github.com/maksis/airdcpp-message-emailer/"
},
"scripts": {
"build": "npm run clean && cross-env NODE_ENV=production webpack",
"clean": "rimraf dist",
"start": "node devtools/watch.js ../dist/main.js",
"prepublishOnly": "npm run build",
"webpack": "webpack",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/runtime": "^7.18.9",
"airdcpp-extension": "^1.5.1",
"airdcpp-extension-settings": "^1.2.1",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^9.1.2",
"cross-env": "^7.0.3",
"eslint": "^9.13.0",
"eslint-plugin-jest": "^28.8.3",
"jest-cli": "^29.7.0",
"nodemailer": "^6.7.7",
"nodemon": "^3.1.7",
"pre-commit": "^1.2.2",
"rimraf": "^3.0.0",
"sendmail": "^1.6.1",
"source-map-support": "^0.5.21",
"webpack": "^5.74.0",
"webpack-cli": "^5.0.1"
},
"main": "dist/main.js",
"airdcpp": {
"apiVersion": 1,
"minApiFeatureLevel": 0
},
"pre-commit": [
"test"
],
"jest": {
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"/dist/",
"/node_modules/",
"/tests/"
],
"collectCoverage": true,
"modulePaths": [
"<rootDir>/src/",
"<rootDir>/tests/"
]
}
}