forked from input-output-hk/js-cardano-wasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "rust-cardano-crypto",
"version": "0.1.2",
"description": "Cardano crypto from rust-wasm binding",
"main": "./dist/index.js",
"scripts": {
"build": "./node_modules/webpack/bin/webpack.js",
"test": "mocha --timeout=10000 js/tests",
"build-and-test": "npm run build && npm run test",
"test-watch": "nodemon --watch js --exec npm run build-and-test",
"dev": "nodemon --watch js --exec npm run build",
"prepublishOnly": "./build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/input-output-hk/js-cardano-wasm.git"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-loader": "7.1.4",
"babel-preset-env": "1.6.1",
"bip39": "2.3.0",
"chai": "4.1.2",
"mocha": "5.0.2",
"nodemon": "1.17.1",
"wasm-loader": "1.3.0",
"webpack": "^3.11.0",
"bs58": "4.0.1",
"cbor": "4.1.4",
"crc": "3.8.0"
},
"peerDependencies": {
"bip39": "2.3.0"
},
"dependencies": {
"iconv-lite": "0.4.19",
"safe-buffer": "5.1.1"
},
"devEngines": {
"node": "8.x",
"npm": "5.x"
}
}