-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.34 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
{
"name": "marmojs",
"author": "RCN",
"deprecated": false,
"description": "Marmojs-sdk helps developers to consume Marmo Relayer.",
"directories": {
"test": "tests"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build:js": "rimraf dist && babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"test": "npm run build:js && mocha dist/**/*.spec.js",
"e2e": "npm run build:js && mocha --timeout 15000000 dist/**/*.spec.e2e.js",
"build": "npm run build:js && rollup -c"
},
"version": "0.2.19",
"dependencies": {
"axios": "^0.19.0",
"bignumber.js": "^9.0.0",
"clean-webpack-plugin": "^1.0.0",
"eth-sig-util": "^2.1.0",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-blockstream": "^7.0.0",
"ethereumjs-util": "^6.0.0",
"ethjs-util": "^0.1.6",
"typedarray-to-buffer": "^3.1.5",
"web3": "1.0.0-beta.55",
"web3-eth": "1.0.0-beta.55",
"web3-eth-abi": "1.0.0-beta.55",
"web3-utils": "1.0.0-beta.55"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.1",
"@babel/preset-typescript": "^7.3.2",
"@babel/runtime": "^7.4.5",
"@types/chai": "^4.1.7",
"@types/ethereumjs-abi": "^0.6.1",
"@types/ethereumjs-util": "^5.2.0",
"@types/jest": "^23.3.11",
"@types/mocha": "^5.2.5",
"@types/request-promise-native": "^1.0.15",
"@types/web3": "^1.0.14",
"chai": "^4.2.0",
"eslint": "^5.12.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"fstream": ">=1.0.12",
"mocha": "^5.2.0",
"rimraf": "^2.6.3",
"rollup": "^1.16.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.21.2",
"scrypt": "^6.0.3",
"ts-loader": "^5.3.2",
"ts-node": "^7.0.1",
"tslint": "^5.5.0",
"tslint-loader": "^3.5.3",
"typescript": "^3.0.1",
"yarn": "^1.16.0"
}
}