-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
45 lines (45 loc) · 916 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
38
39
40
41
42
43
44
45
{
"name": "setup-mpc-common",
"version": "1.0.0",
"main": "dest/index.js",
"license": "MIT",
"files": [
"dest"
],
"scripts": {
"build": "tsc -p tsconfig.prod.json",
"test": "jest"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": ".*\\.test\\.(tsx?|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"rootDir": "./src"
},
"dependencies": {
"@types/progress-stream": "^2.0.0",
"isomorphic-fetch": "^2.2.1",
"moment": "^2.24.0",
"progress-stream": "^2.0.0",
"web3x": "^4.0.3"
},
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^24.0.15",
"@types/node": "^12.6.8",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
}
}