-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 890 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 890 Bytes
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
{
"name": "@naturalcycles/generator-nodejs-lib",
"scripts": {
"prepare": "husky install",
"build-copy": "kpy ./src '**/templates/**' ./generators --dotfiles",
"build": "tsc && yarn build-copy",
"build-prod": "tsc -P ./tsconfig.prod.json && yarn build-copy"
},
"dependencies": {
"@naturalcycles/yeoman-lib": "^1.0.4"
},
"devDependencies": {
"@naturalcycles/dev-lib": "^13.0.3",
"@types/node": "^18.0.3",
"jest": "^28.1.2"
},
"files": [
"generators"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/NaturalCycles/generator-nodejs-lib"
},
"engines": {
"node": ">=14.15.0"
},
"keywords": [
"yeoman-generator"
],
"version": "1.5.3",
"description": "Yeoman generator to create a Node.js lib",
"author": "Natural Cycles Team",
"license": "MIT"
}