-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "spam-remover",
"version": "2.0.1",
"description": "",
"main": "bin/spam-remover.js",
"type": "module",
"scripts": {
"lint": "eslint ./src ./bin --ext .js,.json",
"test": "cross-env NODE_ENV=test node ./bin/spam-remover.js",
"start": "node ./bin/spam-remover.js",
"commit": "git-cz",
"release": "standard-version",
"publish": "git push --follow-tags"
},
"keywords": [],
"author": "FlorentinTh",
"license": "MIT",
"bin": {
"dataset-scanner": "./bin/dataset-scanner.js"
},
"pre-commit": [
"lint"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"chalk": "^5.0.1",
"dayjs": "^1.11.3",
"dotenv": "^16.0.1",
"googleapis": "^104.0.0",
"joi": "^17.6.0",
"node-ipinfo": "^3.1.0",
"nodemailer": "^6.7.5",
"pg": "^8.7.3",
"promisify-child-process": "^4.1.1",
"ssh2-promise": "^1.0.3"
},
"devDependencies": {
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.1.0",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"standard-version": "^9.5.0"
},
"overrides": {
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"minimist": "^1.2.6"
}
}