-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
73 lines (73 loc) · 1.55 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": "pixiv-app-api",
"version": "1.2.1",
"description": "Promise base pixiv API client",
"license": "MIT",
"repository": "akameco/pixiv-app-api",
"author": {
"name": "akameco",
"email": "[email protected]",
"url": "https://akameco.github.io"
},
"engines": {
"node": ">=8"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"fmt": "prettier --write .",
"build": "tsc",
"lint": "eslint --fix src/*.ts",
"test": "jest",
"prepublish": "yarn build",
"start": "tsc && node dist/test.js"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
},
"files": [
"dist"
],
"keywords": [
"pixiv",
"api-client",
"pixiv-app",
"pixiv-app-api",
"pixiv-api"
],
"dependencies": {
"axios": "^0.19.2",
"camelcase-keys": "^6.2.1",
"decamelize-keys": "^1.1.0"
},
"devDependencies": {
"@akameco/tsconfig": "^0.4.0",
"@types/camelcase-keys": "^5.1.1",
"@types/is-plain-obj": "^2.0.2",
"@types/jest": "^25.1.4",
"@types/lodash.isequal": "^4.5.5",
"@types/node": "^13.9.8",
"eslint": "^6.8.0",
"eslint-config-precure": "^5.3.1",
"husky": "^4.2.3",
"is-plain-obj": "^2.1.0",
"jest": "^25.2.4",
"lint-staged": "^10.1.0",
"lodash.isequal": "^4.4.0",
"pixiv-img": "^1.0.0",
"prettier": "^2.0.2",
"ts-jest": "^25.3.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}