-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.5 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
{
"name": "@booster-ts/cli",
"version": "0.3.0",
"description": "CLI for Booster-ts",
"main": "dist/app.js",
"scripts": {
"test": "jest -c ./tests/config.js",
"test:lint": "tslint --project ./tsconfig.json -c ./tslint.json",
"test:func": "jest -c ./tests/config.func.js",
"test:docker": "sh tests/function.sh",
"build": "tsc",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/booster-ts/booster-cli.git"
},
"bin": {
"boost": "./dist/app.js"
},
"keywords": [
"Booster",
"CLI",
"Framework",
"Dependency",
"Injection",
"DI",
"simple"
],
"author": "ImOverlord",
"license": "MIT",
"bugs": {
"url": "https://github.com/booster-ts/booster-cli/issues"
},
"homepage": "https://github.com/booster-ts/booster-cli#readme",
"devDependencies": {
"@types/clui": "^0.3.0",
"@types/fs-extra": "^5.0.5",
"@types/jest": "^24.0.13",
"@types/node": "^11.13.5",
"@types/pascal-case": "^1.1.2",
"@types/yeoman-environment": "^2.3.2",
"@types/yeoman-generator": "^3.1.4",
"codacy-coverage": "^3.4.0",
"jest": "^24.7.1",
"pascal-case": "^3.1.0",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0"
},
"dependencies": {
"@booster-ts/core": "0.0.1",
"chalk": "^3.0.0",
"clui": "^0.3.6",
"commander": "^2.20.0",
"fs-extra": "^7.0.1",
"inquirer": "^7.0.0",
"listr": "^0.14.3",
"yeoman-environment": "^2.6.0",
"yeoman-generator": "^4.2.0"
}
}