-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.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
{
"name": "silverfin-cli",
"version": "1.30.1",
"description": "Command line tool for Silverfin template development",
"main": "index.js",
"license": "MIT",
"private": false,
"bin": {
"silverfin": "./bin/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/silverfin/silverfin-cli.git"
},
"homepage": "https://github.com/silverfin/silverfin-cli#readme",
"bugs": {
"url": "https://github.com/silverfin/silverfin-cli/issues"
},
"scripts": {
"test": "jest",
"silverfin": "./node_modules/silverfin-cli/bin/cli.js"
},
"dependencies": {
"axios": "^1.6.2",
"chalk": "4.1.2",
"chokidar": "^3.6.0",
"command-exists": "^1.2.9",
"commander": "^9.4.0",
"consola": "^3.2.3",
"is-wsl": "^2.2.0",
"open": "^8.4.0",
"prompt-sync": "^4.2.0",
"yaml": "^2.2.1"
},
"devDependencies": {
"axios-mock-adapter": "^2.1.0",
"eslint": "^8.21.0",
"jest": "^29.7.0"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2
}
}