-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
84 lines (84 loc) · 2.06 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "fanfou-sdk",
"version": "5.0.0",
"description": "Fanfou SDK for Node.js",
"type": "module",
"exports": "./distribution/index.js",
"types": "distribution",
"files": [
"distribution"
],
"dependencies": {
"camelcase-keys": "^7.0.2",
"decamelize-keys": "^1.1.0",
"form-data": "^4.0.0",
"got": "^12.0.4",
"he": "^1.2.0",
"hmacsha1": "^1.0.0",
"oauth-1.0a": "^2.2.6",
"query-string": "^7.1.1"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^2.0.0",
"@types/express": "^4.17.13",
"@types/he": "^1.1.2",
"@types/test-listen": "^1.1.0",
"ava": "^5.2.0",
"c8": "^7.13.0",
"del-cli": "^5.0.0",
"express": "^4.18.1",
"gh-pages": "^4.0.0",
"test-listen": "^1.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.23.14",
"typescript": "^4.9.5",
"xo": "^0.54.2"
},
"engines": {
"node": "^14.18.0 || ^16.14.0 || >=18.0.0"
},
"scripts": {
"build": "del-cli distribution && tsc",
"pretest": "npm run build",
"test": "xo && c8 ava",
"typedoc": "npm run build && del-cli docs && typedoc --gitRevision main source/index.ts",
"deploy:doc": "gh-pages -d docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fanfoujs/fanfou-sdk-node.git"
},
"keywords": [
"fanfou"
],
"author": "LitoMore",
"license": "MIT",
"bugs": {
"url": "https://github.com/fanfoujs/fanfou-sdk-node/issues"
},
"homepage": "https://github.com/fanfoujs/fanfou-sdk-node#readme",
"xo": {
"prettier": true,
"rules": {
"camelcase": "off",
"unicorn/no-process-exit": "off",
"ava/no-ignored-test-files": "off",
"@typescript-eslint/no-implicit-any-catch": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "typeLike",
"format": [
"PascalCase"
]
}
]
},
"ignore": [
"docs",
"ava.config.js"
]
}
}