-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
44 lines (44 loc) · 1.31 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
{
"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",
"tiny-secp256k1": "^2.2.1",
"bip39": "^3.0.4",
"bitcoinjs-lib": "^6.0.2",
"browserify": "^17.0.0",
"bs58check": "^2.1.2",
"crypto-hashing": "^1.0.0",
"glob-parent": "^6.0.2",
"jquery": "^3.6.1",
"kjua": "^0.9.0",
"pac-resolver": "^5.0.1",
"path-parse": "^1.0.7",
"tar": "^6.1.11"
},
"devDependencies": {
"@cucumber/cucumber": "^8.6.0",
"bulma": "^0.9.4",
"chai": "^4.3.6",
"chromedriver": "^106.0.1",
"cucumber-pretty": "^6.0.1",
"geckodriver": "^3.0.2",
"mocha": "^10.0.0",
"nightwatch": "^1.7.13",
"nightwatch-api": "^3.0.2"
},
"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",
"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"
}