-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2 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
{
"name": "@hitokoto/node-sdk",
"version": "1.1.0",
"description": "hitokoto.cn official node.js sdk.",
"main": "dist/core.js",
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lint": "eslint -c .eslintrc.js --ext .ts,.tsx,.js {src,scripts}/**/*.{ts,tsx,js}",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hitokoto-osc/node.git"
},
"keywords": [
"sdk",
"node.js",
"hitokoto"
],
"engines": {
"node": ">=8"
},
"author": "a632079 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hitokoto-osc/node/issues"
},
"homepage": "https://github.com/hitokoto-osc/node#readme",
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@types/jest": "25.2.3",
"@types/node": "13.13.17",
"@types/node-fetch": "2.5.7",
"@typescript-eslint/eslint-plugin": "4.1.0",
"@typescript-eslint/parser": "4.1.0",
"@yarnpkg/pnpify": "2.2.1",
"conventional-changelog-cli": "2.1.0",
"eslint": "7.8.1",
"eslint-config-prettier": "6.11.0",
"eslint-config-standard": "14.1.1",
"eslint-import-resolver-node": "0.3.4",
"eslint-plugin-html": "6.1.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"husky": "4.3.0",
"jest": "26.4.2",
"jest-config": "26.4.2",
"jest-pnp-resolver": "1.2.2",
"lint-staged": "10.3.0",
"prettier": "2.1.1",
"ts-jest": "26.3.0",
"ts-node": "8.10.2",
"typescript": "4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -c .commitlintrc.js -E HUSKY_GIT_PARAMS"
}
},
"installConfig": {
"pnp": true
},
"dependencies": {
"form-data": "^3.0.0",
"node-fetch": "^2.6.0",
"query-string": "^6.11.0"
}
}