-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.94 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
{
"name": "@inventorjs/api-service",
"version": "1.0.3",
"description": "Api service manager base on axios",
"keywords": [
"axios",
"api-service"
],
"author": "sunkeysun",
"license": "MIT",
"repository": "https://github.com/inventorjs/api-service.git",
"type": "module",
"exports": "./dist/index.js",
"main": "./dist/index.js",
"files": [
"dist/"
],
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "tsc --watch",
"test": "ts-node-esm src/__test__/index.ts",
"test:rxjs": "ts-node-esm src/__test__/rxjs.ts",
"build": "rimraf dist && tsc",
"publish:patch": "pnpm build && pnpm version patch && pnpm publish",
"publish:minor": "pnpm build && pnpm version minor && pnpm publish",
"publish:major": "pnpm build && pnpm version major && pnpm publish"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@inventorjs/eslint-config": "^0.0.13",
"@inventorjs/prettier-config": "^0.0.13",
"@types/node": "^18.15.2",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"dependencies": {
"axios": "^1.3.4",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"uuid": "^9.0.0"
},
"lint-staged": {
"*.ts(x)?": "eslint --fix"
},
"commitlint": {
"extends": "@commitlint/config-conventional"
},
"eslintConfig": {
"extends": [
"@inventorjs/eslint-config"
]
},
"prettier": "@inventorjs/prettier-config"
}