-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.21 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
{
"name": "create-project-calavera",
"version": "0.1.1",
"description": "A simple starting skeleton for common web projects.",
"exports": "./src/index.js",
"bin": {
"create-project-calavera": "src/index.js"
},
"type": "module",
"scripts": {
"prettier:lint": "prettier .",
"prettier:format": "prettier --write .",
"lint:js": "eslint .",
"lint:css": "stylelint **/*.css"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/schalkneethling/create-project-calavera.git"
},
"keywords": [
"scaffold",
"project",
"starter",
"linting",
"javascript",
"css",
"html",
"cli"
],
"author": "Schalk Neethling",
"license": "MIT",
"bugs": {
"url": "https://github.com/schalkneethling/create-project-calavera/issues"
},
"homepage": "https://github.com/schalkneethling/create-project-calavera#readme",
"dependencies": {
"@clack/prompts": "^0.9.1",
"chalk": "^5.3.0",
"execa": "^9.5.2",
"prettier": "^3.4.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"globals": "^15.13.0",
"stylelint": "^16.11.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-order": "^6.0.4"
}
}