-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
59 lines (59 loc) · 1.27 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
{
"name": "nkn-wallet",
"version": "0.4.9",
"description": "nkn wallet sdk",
"main": "lib/wallet.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nknorg/nkn-wallet-js.git"
},
"keywords": [
"NKN",
"blockchain",
"wallet",
"js",
"sdk"
],
"author": "NKN",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nknorg/nkn-wallet-js/issues"
},
"homepage": "https://nkn.org",
"browserify": {
"transform": [
[
"browserify-replace",
{
"replace": [
{
"from": "var global = Function\\('return this'\\)\\(\\);",
"to": "var global = (function(){ return this }).call(null);"
}
]
}
]
]
},
"dependencies": {
"axios": ">=0.18.1",
"base-x": "3.0.4",
"buffer": "^5.2.1",
"crypto-js": "3.1.9-1",
"decimal.js": "10.0.1",
"es6-promise": "4.2.4",
"google-protobuf": "^3.7.1",
"is": "3.2.1",
"tweetnacl": "^1.0.1"
},
"devDependencies": {
"browserify-replace": "^1.0.0",
"grunt": "^1.0.2",
"grunt-browserify": "^5.3.0",
"grunt-contrib-uglify-es": "^3.3.0",
"uglify-js": "^3.3.24"
}
}