forked from dryajov/gaba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.61 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "gaba",
"version": "1.0.0-beta.67",
"description": "Collection of platform-agnostic modules for creating secure data models for cryptocurrency wallets",
"license": "MIT",
"scripts": {
"precommit": "lint-staged",
"lint": "tslint src/**/*.ts",
"test": "jest --coverage",
"format": "prettier **/*.ts --write --ignore-path=.gitignore",
"build": "rm -rf dist && tsc && cp package.json dist/.",
"build:watch": "npm run build && tsc -w",
"build:link": "npm run build && cd dist && npm link && rm -rf node_modules && cd ..",
"doc": "typedoc src/ && touch docs/.nojekyll"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"json",
"node"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/*.test.ts"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"prettier": {
"arrowParens": "always",
"parser": "typescript",
"printWidth": 120,
"singleQuote": true,
"tabWidth": 4,
"useTabs": true
},
"lint-staged": {
"*.ts": [
"prettier --write",
"tslint",
"git add"
]
},
"devDependencies": {
"@types/fetch-mock": "^6.0.3",
"@types/jest": "^22.2.3",
"@types/node": "^10.1.4",
"@types/sinon": "^4.3.3",
"@types/web3": "^1.0.6",
"ethjs-provider-http": "^0.1.6",
"fetch-mock": "^6.4.3",
"husky": "^0.14.3",
"jest": "^22.1.4",
"jsdom": "11.11.0",
"lint-staged": "^6.1.0",
"prettier": "^1.10.2",
"scrypt": "github:barrysteyn/node-scrypt#pull/144/head",
"sinon": "^5.0.10",
"ts-jest": "^23.10.5",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"typedoc": "^0.11.1",
"typescript": "^2.8.3"
},
"dependencies": {
"await-semaphore": "^0.1.3",
"eth-contract-metadata": "github:MetaMask/eth-contract-metadata#faa4f56fb17b3ae8579df68708be59d617732f31",
"eth-json-rpc-infura": "^3.1.2",
"eth-keyring-controller": "^4.0.0",
"eth-phishing-detect": "^1.1.13",
"eth-query": "^2.1.2",
"eth-sig-util": "^2.1.0",
"ethereumjs-util": "^5.2.0",
"ethereumjs-wallet": "0.6.0",
"ethjs-query": "^0.3.8",
"human-standard-collectible-abi": "^1.0.2",
"human-standard-token-abi": "^2.0.0",
"isomorphic-fetch": "^2.2.1",
"jsonschema": "^1.2.4",
"percentile": "^1.2.1",
"single-call-balance-checker-abi": "^1.0.0",
"uuid": "^3.3.2",
"web3": "^0.20.7",
"web3-provider-engine": "github:metamask/provider-engine#e91367bc2c2535fbf7add06244d9d4ec98620042"
}
}