-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "plasma-wallet",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"postinstall": "cp types/web3/* node_modules/web3/",
"test": "jest",
"coverage": "jest --coverage",
"lint": "tslint --project package.json"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.(ts)$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$"
},
"dependencies": {
"bn.js": "changtimwu/bn.js",
"eth-sig-util": "changtimwu/eth-sig-util",
"js-sha3": "^0.7.0",
"node-fetch": "^2.1.1",
"rlp": "^2.0.0",
"solc": "^0.4.21",
"web3": "^1.0.0-beta.34"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/node": "^9.4.6",
"@types/node-fetch": "^1.6.7",
"ethereumjs-util": "^5.1.5",
"ganache-core": "^2.1.0",
"jest": "^23.0.0",
"sinon": "^5.0.10",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"typedoc": "^0.11.1",
"typedoc-plugin-markdown": "^1.0.14",
"types-ethereumjs-util": "^0.0.7",
"typescript": "^2.8"
},
"author": "[email protected]",
"license": "ISC"
}