-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.92 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
{
"name": "seed-picker-solitaire",
"version": "1.0.2",
"description": "Generate a BIP39 seed phrase offline using an ordinary deck of playing cards.",
"main": "index.js",
"scripts": {
"make-site": "ts-node ./src/make-site.ts",
"make-site-dev": "LOG_LEVEL=silly nodemon --exec 'node --trace-warnings -r ts-node/register ./src/make-site.ts'",
"make-table": "ts-node ./src/make-table.ts",
"make-table-dev": "LOG_LEVEL=silly nodemon --exec 'node --trace-warnings -r ts-node/register ./src/make-table.ts'",
"publish-site": "gh-pages -d ./dist/",
"sim-sticky-shuffle": "./src/sim-sticky-shuffle",
"sim-sticky-shuffle-dev": "LOG_LEVEL=silly nodemon --exec 'node --trace-warnings -r ts-node/register ./src/sim-sticky-shuffle.ts'",
"sim-unsuited-bits": "./src/sim-unsuited-bits",
"sim-unsuited-bits-dev": "LOG_LEVEL=silly nodemon --exec 'node --trace-warnings -r ts-node/register ./src/sim-unsuited-bits.ts'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jimbojw/seed-picker-solitaire.git"
},
"keywords": [
"bitcoin",
"bip39"
],
"author": "jimbo",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jimbojw/seed-picker-solitaire/issues"
},
"homepage": "https://github.com/jimbojw/seed-picker-solitaire#readme",
"devDependencies": {
"gh-pages": "3.1.0",
"nodemon": "2.0.7"
},
"dependencies": {
"@types/d3": "6.3.0",
"@types/fs-extra": "9.0.7",
"@types/jsdom": "16.2.6",
"@types/markdown-it": "12.0.1",
"@types/node": "14.14.28",
"@types/node-fetch": "2.5.8",
"bip39": "3.0.3",
"d3": "6.5.0",
"fs-extra": "9.1.0",
"jsdom": "16.4.0",
"markdown-it": "12.0.4",
"markdown-it-anchor": "7.0.2",
"markdown-it-attrs": "4.0.0",
"markdown-it-header-sections": "1.0.0",
"node-fetch": "2.6.1",
"ts-node": "9.1.1",
"tslog": "3.1.1"
}
}