-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (55 loc) · 1.24 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
{
"name": "kitsu-api-wrapper",
"author": "Abhishek Ketkar",
"description": "A wrapper for Kitsu API.",
"module": "dist/kitsu-api.esm.js",
"version": "0.2.5",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"test:watch": "tsdx test --watch",
"test:coverage": "tsdx test --coverage",
"lint": "tsdx lint",
"lint:fix": "tsdx lint --fix",
"prepare": "tsdx build"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint --fix && tsdx test"
}
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/qs": "^6.9.3",
"axios-mock-adapter": "^1.18.1",
"husky": "^4.2.5",
"tsdx": "^0.13.2",
"tslib": "^2.0.0",
"typescript": "^3.9.5"
},
"dependencies": {
"axios": "^0.19.2",
"qs": "^6.9.4"
},
"keywords": ["kitsu", "kitsu-api", "anime", "api", "wrapper"],
"repository": {
"type": "git",
"url": "https://github.com/ketkar203040/kitsu-api"
},
"homepage": "https://github.com/ketkar203040/kitsu-api"
}