-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 989 Bytes
/
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
{
"name": "paramplate",
"version": "1.2.0",
"description": "Simple code generator",
"main": "bin/index.js",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "npx tsc",
"lint": "eslint . --ext .ts",
"test": "rimraf ./test/output & npm run build & node ./test/cli-e2e.js"
},
"bin": {
"paramplate": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shzlw/paramplate.git"
},
"keywords": [
"cli",
"code-generator",
"template"
],
"author": "Zhonglu Wang",
"license": "MIT",
"bugs": {
"url": "https://github.com/shzlw/paramplate/issues"
},
"homepage": "https://github.com/shzlw/paramplate#readme",
"devDependencies": {
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.5.5"
},
"files": [
"dist"
]
}