-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 2.11 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
{
"name": "7daystodie-api-wrapper",
"version": "2.2.3",
"description": "Interact with a 7DTD web API from Allocs Fixes",
"keywords": [
"web",
"api",
"7",
"days",
"to",
"die",
"alloc",
"fixes"
],
"repository": {
"type": "git",
"url": "https://github.com/CatalysmsServerManager/7-Days-to-Die-API-wrapper"
},
"license": "GPL-3.0",
"author": "Catalysm",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"build": "tsc -D",
"build-watch": "tsc --watch",
"cover": "nyc npm run test",
"docs": "typedoc --out docs/ lib/ --theme minimal --name '7 Days to Die API wrapper' --includeDeclarations --excludeExternals --exclude lib/getStats.ts",
"lint": "eslint --ext .ts,.tsx --ignore-path ./.gitignore .",
"sanitize:tapes": "node bin/sanitize-tapes.js",
"test": "mocha test --exit",
"postversion": "git push && git push --tags"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run sanitize:tapes",
"pre-push": "npm run lint && npm run sanitize:tapes"
}
},
"mocha": {
"extension": [
"ts"
],
"reporter": "spec",
"require": [
"ts-node/register",
"source-map-support/register"
]
},
"dependencies": {
"@types/qs": "^6.9.1",
"node-fetch": "^2.6.1",
"qs": "^6.9.3"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.1.4",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^8.0.3",
"@types/node": "^15.0.0",
"@types/node-fetch": "^2.5.2",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.1",
"dotenv": "^10.0.0",
"eslint": "^6.8.0",
"husky": "^7.0.0",
"ip-to-int": "^0.3.1",
"istanbul": "^0.4.5",
"mocha": "^9.0.0",
"nyc": "^15.0.1",
"shx": "^0.3.0",
"source-map-support": "^0.5.19",
"talkback": "^2.4.3",
"ts-node": "^9.0.0",
"typedoc": "^0.21.0",
"typescript": "^4.0.2"
},
"engines": {
"node": ">=8.15.1"
}
}