-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.12 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.12 KB
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
{
"name": "g3-utils",
"version": "1.0.0",
"description": "Util-functions that are be useful in async tests",
"scripts": {
"test-ecc": "mocha test/ecc/* --timeout 30000",
"test-gm": "mocha test/gm/* --timeout 30000",
"test": "test-ecc && test-gm",
"dist": "rm -rf dist && mkdir -p dist && babel --copy-files src --out-dir dist && babel --copy-files index.js --out-dir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GenimousChain/g3-utils"
},
"author": "GenimousChain",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GenimousChain/g3-utils/issues"
},
"homepage": "https://github.com/GenimousChain/g3-utils#readme",
"devDependencies": {
"assert": "1.4.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"mocha": "5.2.0"
},
"dependencies": {
"babel-runtime": "6.26.0",
"bigi": "^1.4.2",
"binaryen": "^37.0.0",
"bip39": "^2.5.0",
"browserify-aes": "^1.0.6",
"bs58-rn": "^0.0.3",
"bytebuffer": "^5.0.1",
"camel-case": "^3.0.0",
"clone": "^2.1.1",
"create-hash": "^1.1.3",
"create-hmac": "^1.1.6",
"deep-equal": "^1.0.1",
"ecurve": "^1.0.5",
"fcbuffer": "^2.2.1",
"is-node": "1.0.2",
"isomorphic-fetch": "^2.2.1",
"jsbn": "^1.1.0",
"lodash.isempty": "^4.4.0",
"lodash.isstring": "^4.0.1",
"minimatch": "^3.0.4",
"randombytes": "^2.0.5"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"syntax-async-functions",
"transform-regenerator",
[
"transform-runtime",
{
"polyfill": false,
"regenerator": true
}
]
]
}
}