forked from endink/infra-typescript-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.14 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": "infra-sdk-core",
"version": "1.6.3",
"description": "A type script sdk for infra java spring server.",
"main": "lib/index.js",
"scripts": {
"start": "webpack-dev-server --open development",
"pub": "local-package-publisher -u&&local-package-publisher -p",
"unpub": "local-package-publisher -u",
"build": "tsc --excludeDirectories test",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"lint:fix": "tslint --fix -p tsconfig.json",
"test": "jest",
"test-c": "jest --coverage",
"debug": "node --inspect-brk node_modules/.bin/jest --runInBand --no-cache --no-watchman",
"debug-win": "node --inspect-brk ./node_modules/jest/bin/jest.js",
"pretty": "prettier -c --write \"src/**\"",
"gen": "webpack"
},
"keywords": [
"npm",
"plugin",
"typescript"
],
"author": "Anders Xiao",
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/endink/infra-typescript-sdk.git"
},
"license": "Apache 2",
"bugs": {
"url": "https://github.com/endink/infra-typescript-sdk/issues"
},
"homepage": "https://github.com/endink/infra-typescript-sdk",
"dependencies": {
"ali-oss": "^6.16.0",
"dayjs": "^1.10.7",
"umi-request": "^1.4.0"
},
"devDependencies": {
"@types/ali-oss": "^6.0.8",
"@types/enzyme": "^3.10.8",
"@types/html-webpack-plugin": "^3.2.5",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.2",
"@types/webpack": "^5.28.0",
"css-loader": "^5.2.4",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"local-package-publisher": "^1.0.3",
"pre-commit": "^1.2.2",
"prettier": "^2.3.0",
"source-map-loader": "^2.0.1",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.6",
"ts-loader": "^9.1.2",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.4",
"url-loader": "^4.1.1",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
}
}