generated from simonecorsi/scdev-npm-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.15 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
66
67
68
69
70
71
72
73
74
{
"name": "skaffoldo",
"version": "1.2.0",
"description": "🏗 Universal project generator! Recursively copy a template folder while replacing variables in a matter of ms",
"author": "Simone Corsi <[email protected]>",
"license": "MIT",
"type": "module",
"bin": "./bin/index.js",
"exports": "./src/index.js",
"types": "index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"url": "https://github.com/simonecorsi/skaffoldo"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"types": "tsc --allowJs -d --emitDeclarationOnly index.js",
"prepare": "node prepare.js || echo 'Skipping prepare'",
"test": "node --test ",
"coverage": "c8 --src src --all npm t"
},
"keywords": [
"github",
"nodejs",
"javascript",
"js",
"esnext",
"node",
"npm"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^9.0.3",
"@semantic-release/npm": "^10.0.3",
"@semantic-release/release-notes-generator": "^12.1.0",
"c8": "^9.1.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.1",
"is-ci": "^3.0.0",
"lint-staged": "^15.2.0",
"markdown-toc": "^1.2.0",
"prettier": "^3.0.0",
"semantic-release": "^24.1.2"
},
"dependencies": {
"fast-glob": "^3.2.4",
"pino": "^8.8.0",
"pino-pretty": "^10.0.0",
"piscina": "^4.3.0",
"pump": "^3.0.0",
"rimraf": "^5.0.0",
"split2": "^4.1.0"
},
"volta": {
"node": "18.13.0"
}
}