-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.34 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
{
"name": "create-carv",
"version": "1.4.0",
"description": "scaffolding out a carv package.",
"keywords": [
"init",
"npm",
"create",
"initializer",
"module",
"library",
"sao-generator",
"sao",
"scaffold",
"scaffolding",
"carv"
],
"homepage": "https://github.com/carvjs/tools#readme",
"bugs": {
"url": "https://github.com/carvjs/tools/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carvjs/tools.git",
"directory": "packages/create-carv"
},
"license": "MIT",
"author": "Sascha Tandel <s.tandel@kenoxa.de>",
"main": "./generator/saofile.js",
"bin": "./bin/create-carv.js",
"files": [
"bin",
"generator",
"!**/__test__/**"
],
"scripts": {
"test": "jest"
},
"jest": {
"preset": "../snowpack-scripts/jest-preset",
"testMatch": [
"<rootDir>/generator/**/__tests__/*.{js,jsx,ts,tsx}"
],
"testPathIgnorePatterns": [
"/templates/"
]
},
"dependencies": {
"at-least-node": "^1.0.0",
"cac": "^6.5.10",
"chalk": "^4.1.0",
"envinfo": "^7.5.1",
"execa": "^4.0.2",
"registry-url": "^5.1.0",
"sao": "^1.7.1",
"update-notifier": "^5.0.0",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"jest": "^26.1.0"
},
"engines": {
"node": ">=12.4"
}
}