-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
66 lines (66 loc) · 1.85 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "symbol-vanity",
"version": "0.2.0",
"description": "Symbol vanity addresses generator",
"main": "build/cli.js",
"scripts": {
"prepare": "rm -rf build/ && tsc",
"build": "rm -rf build/ && tsc",
"dev": "nodemon --config \"./nodemon-config.json\"/",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"test": "jest --forceExit --coverage --verbose --colors --detectOpenHandles"
},
"bin": {
"symbol-vanity": "./bin/symbol-vanity"
},
"repository": {
"type": "git",
"url": "git+https://github.com/decentraliser/symbol-vanity-address.git"
},
"keywords": [
"symbol",
"nem",
"vanity",
"address",
"crypto",
"blockchain"
],
"author": "decentraliser",
"license": "MIT",
"bugs": {
"url": "https://github.com/decentraliser/symbol-vanity-address/issues"
},
"homepage": "https://github.com/decentraliser/symbol-vanity-address#readme",
"dependencies": {
"@types/figlet": "^1.2.0",
"@types/prompts": "^2.0.5",
"chalk": "^3.0.0",
"clime": "^0.5.10",
"prompts": "^2.3.1",
"rxjs": "^6.5.4",
"symbol-hd-wallets": "^0.14.1",
"symbol-sdk": "^1.0.0"
},
"devDependencies": {
"@types/bip32": "^1.0.2",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.1",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"jest": "^25.1.0",
"jest-junit": "^10.0.0",
"nodemon": "^2.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
}
}