-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.29 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
{
"name": "azurlane",
"version": "1.6.0",
"description": "Api wrapper for the azur lane api",
"main": "lib/index",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"homepage": "https://kurozeropb.github.io/AzurLane/index.html",
"repository": {
"type": "git",
"url": "git+https://github.com/KurozeroPB/AzurLane.git"
},
"keywords": [
"azurlane",
"azur",
"lane",
"api",
"azur-lane",
"shipgirls",
"waifu"
],
"bugs": {
"email": "[email protected]",
"url": "https://github.com/KurozeroPB/AzurLane/issues"
},
"author": {
"email": "[email protected]",
"name": "KurozeroPB",
"url": "https://kurozeropb.info"
},
"license": "MIT",
"private": false,
"scripts": {
"prepare": "yarn rollup:build && yarn types:generate",
"rollup:build": "rm -rf ./lib && rollup -c && rm -rf ./lib/src",
"rollup:watch": "yarn rollup:build -- --watch",
"types:generate": "dts-bundle-generator -o lib/index.d.ts src/index.ts",
"test": "yarn jest && yarn tslint:test && yarn eslint:test",
"jest": "jest --config jest.config.js --no-cache",
"tslint:test": "tslint -p ./",
"docs": "typedoc && cp .nojekyll docs/",
"gts:check": "gts check",
"gts:clean": "gts clean",
"gts:fix": "gts fix",
"eslint:test": "eslint --ext .ts .",
"eslint:fix": "eslint --ext .ts --fix ."
},
"dependencies": {
"axios": "^0.19.0",
"deprecated-decorator": "^0.1.6"
},
"devDependencies": {
"@types/jest": "^24.0.22",
"@types/node": "^12.12.6",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"dts-bundle-generator": "^3.2.0",
"eslint": "^6.6.0",
"gh-pages": "^2.1.1",
"gts": "^1.1.0",
"jest": "^24.9.0",
"rollup": "^1.26.3",
"rollup-plugin-ignore": "^1.0.5",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.25.2",
"ts-node": "^8.4.1",
"tslib": "^1.10.0",
"tslint": "^5.20.1",
"typedoc": "^0.15.0",
"typescript": "^3.7.2"
}
}