-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.33 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
{
"name": "@alifd/fusion-site-sdk",
"version": "0.1.0",
"description": "fusion site open api node sdk",
"main": "build/index.js",
"files": [
"build",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"lint": "tslint src/*.ts src/**/*.ts test/*.ts test/**/*.ts --fix",
"prepublishOnly": "npm run build",
"test": "jest",
"cov": "jest --coverage"
},
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"debug": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-typescript": "^7.3.3",
"@types/axios": "^0.14.0",
"@types/debug": "^4.1.2",
"@types/jest": "^24.0.11",
"@types/node": "^11.13.4",
"@types/power-assert": "^1.5.0",
"babel-preset-power-assert": "^3.0.0",
"husky": "^1.3.1",
"jest": "^24.7.1",
"lint-staged": "^8.1.5",
"power-assert": "^1.6.1",
"ts-node": "^8.0.3",
"tslint": "^5.13.1",
"typescript": "^3.3.3333"
},
"repository": {
"type": "git",
"url": "https://github.com/alibaba-fusion/fusion-site-sdk"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}