-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.72 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
{
"name": "scapp",
"version": "1.6.4",
"description": "C++ app scaffolding utility.",
"main": "build/scapp.js",
"types": "build/scapp.d.ts",
"type": "module",
"bin": {
"scapp": "./build/scapp.js"
},
"scripts": {
"build": "tsc -b -v --force",
"start": "node build/scapp.js",
"debug": "node build/scapp.js --debug",
"watch": "tsc -b -v -watch",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "npx eslint .",
"lintFix": "npx eslint --fix .",
"test": "jest --config jestconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"files": [
"build/**/*",
"template/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lyquid/scapp.git"
},
"keywords": [
"cplusplus",
"c++",
"cli",
"cmake",
"editorconfig",
"vcpkg",
"scaffold",
"generator",
"modern"
],
"author": "Alejandro Castillo Blanco <alexcastilloblanco@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lyquid/scapp/issues"
},
"homepage": "https://lyquid.github.io/scapp",
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.14",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.2",
"tsconfig": "^7.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^9.5.0",
"inquirer": "^9.2.13"
}
}