forked from merland/seedpicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.21 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": "seedpicker",
"version": "1.0.0",
"description": "Contains a GUIDE and a CALCULATOR to help you safely create a private key.",
"main": "index.js",
"dependencies": {
"@creativebulma/bulma-tooltip": "^1.2.0",
"bip32": "^2.0.6",
"bip39": "^3.0.2",
"bitcoinjs-lib": "^5.2.0",
"browserify": "^16.5.2",
"bs58check": "^2.1.2",
"crypto-hashing": "^1.0.0",
"jquery": "^3.5.1",
"kjua": "^0.9.0"
},
"devDependencies": {
"bulma": "^0.9.1",
"chai": "^4.2.0",
"chromedriver": "^85.0.1",
"cucumber": "^6.0.5",
"cucumber-pretty": "^6.0.0",
"geckodriver": "^1.20.0",
"mocha": "^8.1.3",
"nightwatch": "^1.4.3",
"nightwatch-api": "^3.0.1",
"node-sass": "^4.14.1"
},
"scripts": {
"build": "./browserify.sh",
"test:unit": "mocha test",
"test:cucumber": "cucumber-js --require cucumber.conf.js --require step_definitions --format node_modules/cucumber-pretty",
"test": "npm run test:unit; npm run test:cucumber",
"css-build": "node-sass --omit-source-map-url sass/mystyles.scss css/mystyles.css",
"css-watch": "npm run css-build -- --watch",
"start": "npm run css-watch"
},
"author": "[email protected]",
"license": "MIT"
}