-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
73 lines (73 loc) · 2.01 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
67
68
69
70
71
72
73
{
"name": "scrypt-cli",
"version": "0.2.2",
"description": "CLI tool for creating and managing sCrypt projects.",
"bin": {
"scrypt": "./src/bin/index.js",
"scrypt-cli": "./src/bin/index.js"
},
"scripts": {
"coverage": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --coverage",
"format": "prettier --write --ignore-unknown **/*",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --silent",
"testw": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --watch --silent",
"test-templates": "sh tests/test-templates.sh",
"test-all-commands": "sh tests/test-all-commands.sh",
"test-lib-import": "node tests/test-lib-import.js",
"test-all": "npm t && npm run test-templates && npm run test-all-commands && npm run test-lib-import",
"prepare": "husky install",
"publish:test": "npm publish --tag test"
},
"jest": {
"testMatch": [
"<rootDir>/src/**/*.test.js"
]
},
"dependencies": {
"axios": "^1.3.6",
"chalk": "^4.1.2",
"enquirer": "^2.3.6",
"envinfo": "^7.8.1",
"fast-glob": "^3.2.11",
"find-npm-prefix": "^1.0.2",
"fs-extra": "^10.1.0",
"gittar": "^0.1.1",
"glob": "^10.3.10",
"hjson": "^3.2.2",
"json5": "^2.2.2",
"lodash": "^4.17.21",
"ora": "^5.4.1",
"scrypt-ts-transpiler": "^1.2.29",
"scryptlib": "~2.2.1",
"semver": "^7.3.8",
"shelljs": "^0.8.5",
"table": "^6.8.0",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"dotenv": "^16.0.3",
"husky": "^8.0.3",
"jest": "^27.2.1",
"typescript": "~5.3.3"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sCrypt-Inc/scrypt-cli.git"
},
"keywords": [
"scrypt",
"cli",
"bitcoin",
"blockchain"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/sCrypt-Inc/scrypt-cli/issues"
},
"homepage": "https://github.com/sCrypt-Inc/scrypt-cli#readme"
}