-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 970 Bytes
/
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
{
"name": "@exiliontech/walletcs-lib-ext",
"version": "1.0.9",
"description": "external service connect for @exiliontech/walletcs",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"compile": "babel src --out-dir lib --extensions '.ts,.js'"
},
"author": "exiiontech",
"license": "Apache-2.0",
"dependencies": {
"@babel/polyfill": "^7.6.0",
"@exiliontech/walletcs": "^2.0.26",
"abi-decoder": "^2.2.2",
"ethers": "^4.0.37",
"husky": "^3.0.9",
"typescript": "^3.6.3",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-typescript": "^7.7.2",
"@types/jest": "^24.0.18",
"@types/whatwg-fetch": "0.0.33",
"jest": "^24.9.0",
"ts-jest": "^24.1.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run compile",
"pre-push": "npm test && npm publish --access public"
}
}
}