-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 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
{
"name": "wallet-provider",
"version": "1.1.1",
"description": "SDK for using crypto wallets such as Metamask",
"scripts": {
"build": "npm run build:clean && npm run build:ts",
"build:clean": "node ./scripts/clean-dist.js",
"build:ts": "./node_modules/.bin/tsc && tscpaths -p tsconfig.json -s ./lib -o ./dist/lib",
"lint": "tslint --project tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/ethereumjs-tx": "^1.0.1",
"@types/ethereumjs-util": "^5.2.0",
"@types/node": "^10.12.2",
"husky": "^1.3.1",
"shelljs": "^0.8.3",
"ts-node": "^8.2.0",
"tscpaths": "0.0.9",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"tslint-lines-between-class-members": "^1.3.1",
"typescript": "^3.5.1"
},
"dependencies": {
"bn.js": "^5.0.0",
"web3": "1.0.0-beta.55"
},
"engines": {
"npm": ">=5",
"node": ">=8.9.0"
},
"files": [
"dist",
"config"
],
"husky": {
"hooks": {
"pre-commit": "npm run build && git add dist"
}
},
"main": "./dist/proto.js",
"types": "./dist/proto.d.ts",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/monetha/wallet-provider.git"
},
"author": "Monetha",
"license": "GPL-3.0"
}