-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "aion-keystore",
"namespace": "aion",
"version": "0.0.2",
"description": "Aion offline transaction signing & keystore library",
"repository": "https://github.com/qoire/aion-keystore",
"license": "LGPL-3.0",
"main": "src/index.js",
"scripts": {
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"pack_dev": "webpack"
},
"dependencies": {
"aion-rlp": "^0.0.1",
"any-promise": "1.3.0",
"blake2b": "^2.1.2",
"js-sha3": "^0.8.0",
"number-to-bn": "1.7.0",
"randomhex": "^0.1.5",
"scryptsy": "^2.0.0",
"tweetnacl": "^1.0.0",
"underscore": "^1.8.3",
"uuid": "2.0.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.4",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"git-revision-webpack-plugin": "^3.0.3",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
}
}