This repository has been archived by the owner on Jan 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.43 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
{
"name": "makestuff",
"version": "1.3.2",
"description": "Tiny scaffolding tool for your project",
"license": "MIT",
"main": "dist/shell/shell.js",
"engines": {
"node": ">=8"
},
"bin": {
"makestuff": "dist/cli/entrypoint.js"
},
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"start": "npm run lint && npm-run-all -p -r ts-watch lint-watch",
"lint": "tslint -p ./ --force --format stylish",
"ts-watch": "tsc --watch --pretty",
"lint-watch": "onchange './src/**/*.ts' -d 300 -- npm run lint",
"build": "tsc",
"test": "jest",
"test-watch": "jest --watchAll",
"prepare": "npm run build"
},
"dependencies": {
"@types/node": "^14.11.8",
"@types/semver": "^7.3.4",
"caporal": "^1.4.0",
"chalk": "^2.4.2",
"ejs": "^3.1.5",
"mkdirp": "^1.0.4",
"semver": "^7.3.2",
"tslib": "^2.0.2",
"typescript": "^4.0.3"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"jest": "^26.5.2",
"npm-run-all": "^4.1.5",
"onchange": "^7.0.2",
"ts-jest": "^26.4.1",
"tslint": "^6.1.3"
},
"author": {
"name": "Alexandr Rodik",
"email": "alexandr.rodik@gmail.com"
},
"keywords": [
"scaffolding",
"generator",
"generate",
"make",
"create",
"file",
"cli",
"cli-app",
"boilerplate"
],
"repository": {
"type": "git",
"url": "https://github.com/arodik/makestuff.js.git"
}
}