-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
67 lines (67 loc) · 1.82 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
{
"name": "shimo-sdk-cabinet",
"version": "4.5.0",
"description": "shimo sdk cabinet, which to simplify the development process",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run clean && npm run compile",
"lint": "eslint --ext .js . && tslint --format stylish --project .",
"clean": "del dist",
"compile": "npx webpack",
"prepublishOnly": "NODE_ENV=production npm run build"
},
"author": "fghpdf",
"license": "ISC",
"devDependencies": {
"@types/lodash.forin": "^4.4.6",
"@types/lodash.get": "^4.4.6",
"@types/lodash.isobject": "^3.0.6",
"@types/node": "^12.7.2",
"@types/object-assign": "^4.0.30",
"css-loader": "^3.2.0",
"cssnano": "^4.1.10",
"del-cli": "^2.0.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eventemitter3": "^3.1.0",
"husky": "^4.2.1",
"postcss-load-config": "^2.1.0",
"postcss-loader": "^3.0.0",
"postcss-plugin": "^1.0.0",
"postcss-preset-env": "^6.7.0",
"script-loader": "^0.7.2",
"style-loader": "^1.0.0",
"ts-loader": "^8.0.3",
"tslint": "^5.20.1",
"tslint-config-standard": "^9.0.0",
"typescript": "~3.9.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"axios": "^0.21.1",
"lodash.forin": "^4.4.0",
"lodash.get": "^4.4.2",
"lodash.isobject": "^3.0.2",
"object-assign": "^4.1.1",
"promise-polyfill": "^8.1.3",
"tiny-emitter": "^2.1.0"
},
"files": [
"typings",
"src",
"dist",
"vendor/**/*.js",
"vendor/**/*.css"
],
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
}
}