forked from decenterland/hd-wallet-js
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.52 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.52 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
{
"name": "@aeternity/hd-wallet",
"version": "0.2.0",
"description": "HD Wallet for the æternity blockchain",
"main": "dist/wallet.js",
"browser": "dist/wallet.browser.js",
"scripts": {
"build": "webpack -p",
"build:dev": "webpack --mode=development",
"test": "mocha --recursive --require @babel/register",
"test:watch": "mocha --recursive --require @babel/register --watch",
"postinstall": "postinstall-build --only-as-dependency dist"
},
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.0.0-beta.46",
"bip32-path": "^0.4.2",
"postinstall-build": "^5.0.1",
"tweetnacl": "^1.0.0",
"tweetnacl-auth": "^1.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/aeternity/wallet-js"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.46",
"@babel/core": "^7.0.0-beta.46",
"@babel/node": "^7.0.0-beta.46",
"@babel/plugin-proposal-export-default-from": "^7.0.0-beta.46",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.40",
"@babel/plugin-transform-runtime": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.39",
"@babel/register": "^7.0.0-beta.46",
"babel-core": "6",
"babel-loader": "^8.0.0-beta.2",
"bufferutil": "^4.0.3",
"chai": "^4.1.2",
"import-glob-loader": "^1.1.0",
"mocha": "^5.0.0",
"mocha-junit-reporter": "^1.17.0",
"prompt": "^1.0.0",
"sinon": "^4.2.2",
"standard": "*",
"standard-loader": "^6.0.1",
"webpack": "^4.8.1",
"webpack-cli": "^3.1.1"
}
}