-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 942 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 942 Bytes
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
{
"name": "xteam-api",
"version": "0.0.7",
"description": "XTEAM API",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"src": "src"
},
"scripts": {
"start": "lib/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "tsc",
"lint": "eslint */*.ts --quiet --fix",
"build:all": "tsc && typedoc",
"build:docs": "typedoc",
"build:tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nurutomo/xteam-api.git"
},
"keywords": [
"api",
"tools"
],
"author": "Nurutomo",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nurutomo/xteam-api/issues"
},
"homepage": "https://github.com/Nurutomo/xteam-api#readme",
"dependencies": {
"got": "^11.8.2"
},
"devDependencies": {
"@types/got": "^9.6.11",
"typedoc": "^0.20.0-beta.27",
"typescript": "^4.0.0"
}
}