-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 954 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
{
"name": "eosjs-ecc-compression-tweak",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run browserify && npm run srisum",
"browserify": "browserify -o ./index.js -s imports src/index.js",
"srisum": "srisum ./index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"bigi": "^1.4.2",
"browserify": "16.2.2",
"bs58": "^4.0.1",
"ecurve": "^1.0.5",
"srisum": "^2.0.0"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"syntax-async-functions",
"transform-regenerator",
[
"transform-runtime",
{
"polyfill": false,
"regenerator": true
}
]
]
},
"devDependencies": {
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1"
}
}