-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "pnwkit",
"version": "2.2.1",
"description": "An API V3 SDK for PnW with GraphQL Typings",
"main": "./build/src/index.js",
"repository": "https://github.com/bsnk-dev/pnwkit",
"keywords": [
"politics and war",
"pnwkit",
"pnw",
"api",
"bann"
],
"scripts": {
"build": "tsc",
"clean:build": "shx rm -rf ./build",
"docs": "typedoc src/index.ts src/api src/interfaces/PoliticsAndWarGraphQL.ts",
"test": "npm run clean:build && npm run build && mocha ./build/test --recursive --timeout 10000"
},
"author": "bsnk-dev",
"license": "MIT",
"devDependencies": {
"@types/memoizee": "^0.4.6",
"@types/mocha": "^8.2.2",
"@types/superagent": "^4.1.12",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.30.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-tsdoc": "^0.2.14",
"mocha": "^9.0.1",
"shx": "^0.3.3",
"typedoc": "^0.21.2",
"typescript": "^4.3.5"
},
"dependencies": {
"memoizee": "^0.4.15",
"superagent": "^6.1.0"
}
}