-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.17 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.17 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
{
"name": "project-calavera",
"version": "4.0.0",
"description": "A simple, configurable starting skeleton for vanilla web projects.",
"bin": {
"calavera": "./lib/calavera.js"
},
"main": "./lib/calavera.js",
"scripts": {
"test": "jest",
"test:dev": "jest --watch",
"calavera": "node ./lib/calavera.js"
},
"repository": {
"type": "git",
"url": "https://github.com/schalkneethling/project-calavera.git"
},
"keywords": [
"nodejs",
"boilerplate",
"projects",
"dotfiles",
"automation",
"generator"
],
"author": "Schalk Neethling",
"license": "MIT",
"bugs": {
"url": "https://github.com/schalkneethling/project-calavera/issues"
},
"homepage": "https://github.com/schalkneethling/project-calavera#readme",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"eslint": "^8.3.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^27.1.3",
"jest": "^29.7.0",
"mock-fs": "5.2.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"fs-extra": "11.1.1",
"inquirer": "^8.2.6",
"signale": "1.4.0"
}
}