forked from mwinb/VaporTs-CLI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.39 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": "@vaports/cli",
"version": "0.0.2",
"description": "CLI tool for bootstrapping creation of VaporTs applications.",
"main": "bin/main.js",
"bin": {
"vaports": "./bin/main.js"
},
"keywords": [
"VaporTs",
"CLI",
"Node",
"Express",
"TypeScript"
],
"scripts": {
"build": "npm run clean && tsc && npm run move-templates",
"test": "jest --watchAll",
"prepare": "npm run build",
"prestart": "npm run build",
"start": "node ./bin/main.js",
"lint": "eslint \"./src/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run test:unit && npm run lint",
"version": "npm run format && git add -A src",
"test:unit": "jest --watchAll=false --silent --coverage --bail",
"clean": "npx rimraf bin",
"move-templates": "npx copyfiles -u 1 src/**/*.tmpl bin/"
},
"author": "Michael Winberry",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.11",
"@types/prompts": "^2.0.14",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^27.4.3",
"prettier": "^2.5.0",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
},
"dependencies": {
"prompts": "^2.4.2",
"semver": "^7.3.5"
}
}