forked from sagan-software/scatter-js
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.86 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
{
"name": "scatter-js",
"version": "2.4.0",
"description": "",
"main": "dist/scatter.esm.js",
"module": "dist/scatter.cjs.js",
"browser": "dist/scatter.min.js",
"scripts": {
"pack": "./node_modules/.bin/webpack --watch",
"build": "rollup -c",
"testfile": "mocha --require babel-core/register --exit --timeout 1000000",
"test": "npm run testfile \"test/**/*.spec.js\" --timeout 1000000",
"touch": "./node_modules/.bin/webpack && npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"eosjs": "^16.0.2",
"es6-promise": "^4.2.4",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-util": "^5.2.0",
"get-random-values": "^1.2.0",
"isomorphic-fetch": "^2.2.1",
"node-rsa": "^1.0.1",
"socket.io-client": "^2.1.1",
"web3-provider-engine": "^14.0.6"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-minify": "^0.4.3",
"babel-preset-stage-3": "^6.24.1",
"babel-watch": "^2.0.7",
"babelrc-rollup": "^3.0.0",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.3.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^3.12.0"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"syntax-async-functions",
"transform-regenerator",
[
"transform-runtime",
{
"polyfill": false,
"regenerator": true
}
]
]
}
}