-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.36 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.36 KB
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
{
"name": "@gavant/cli",
"version": "0.0.3",
"description": "The Gavant command line interface.",
"author": "Gavant Software, Inc.",
"keywords": [
"gavant",
"cli",
"gavin"
],
"main": "./bin/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"release": "release-it"
},
"publishConfig": {
"access": "public"
},
"bin": {
"gavin": "./bin/index.js"
},
"volta": {
"node": "18.16.0",
"yarn": "4.0.0-rc.48"
},
"dependencies": {
"chalk": "4.1.2",
"cli-spinners": "^2.9.1",
"degit": "^2.8.4",
"ora": "^7.0.1",
"replace-in-file": "^7.0.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"jest": "^29.7.0",
"release-it": "^16.2.1"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"bin/**/*.js",
"blueprints/**/*.js",
"utils/**/*.js",
"!**/node_modules/**"
],
"testMatch": [
"**/__tests__/**/*.js",
"**/?(*.)+(spec|test).js"
],
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.js"
]
},
"blueprints": {
"react-app": "gavant/react-app-blueprint"
}
}