-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.4 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "hendrix",
"version": "2.0.3",
"description": "Simple, Rails-like scaffolding tool for quickly scaffolding files with minimal configuration.",
"main": "bin/index.js",
"scripts": {
"start": "tsc -w",
"build": "tsc",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"test": "jest --runInBand",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"files": [
"bin/index.js",
"examples-*/**/*"
],
"keywords": [
"generator",
"scaffold",
"cli"
],
"author": "Sean W. Lawrence <[email protected]> (https://slawrence.tech/)",
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/commit-analyzer": "^6.3.0",
"@semantic-release/git": "^7.0.16",
"@semantic-release/npm": "^5.3.4",
"@semantic-release/release-notes-generator": "^7.3.0",
"@types/eslint": "^6.1.2",
"@types/jest": "^24.0.18",
"@types/mkdirp": "^0.5.2",
"@types/mustache": "^0.8.32",
"@types/ncp": "^2.0.2",
"@types/node": "^12.7.12",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "3.0.2",
"ejs": "^2.7.1",
"eslint": "^6.5.1",
"handlebars": "^4.5.1",
"hogan.js": "^3.0.2",
"jest": "^24.9.0",
"nunjucks": "^3.2.0",
"pug": "^2.0.4",
"rimraf": "^3.0.0",
"semantic-release": "^15.13.30",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
},
"peerDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/seanWLawrence/hendrix.git"
},
"bugs": {
"url": "https://github.com/seanWLawrence/hendrix/issues"
},
"homepage": "https://github.com/seanWLawrence/hendrix/#README.md",
"bin": {
"hendrix": "bin/index.js",
"h": "bin/index.js"
},
"dependencies": {
"@types/yargs-parser": "^13.1.0",
"chalk": "^2.4.2",
"commander": "^3.0.2",
"lodash": "^4.17.15",
"mkdirp": "^0.5.1",
"mustache": "^3.1.0",
"ncp": "^2.0.0",
"yargs-parser": "^16.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}