forked from gelhaimer/daswag-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "daswag-cli",
"description": "Generate your full Serverless Web Application in seconds with daSWAG cli.",
"version": "1.0.0-beta",
"author": {
"name": "Steve Houël",
"url": "https://github.com/stevehouel"
},
"bin": {
"daswag": "./bin/run"
},
"bugs": "https://github.com/daswag/daswag-cli/issues",
"dependencies": {
"@oclif/command": "^1.5.18",
"@oclif/config": "^1.13.3",
"@oclif/errors": "^1.2.2",
"@oclif/fixpack": "^2.3.0",
"@oclif/plugin-autocomplete": "^0.1.3",
"@oclif/plugin-help": "^2.2.1",
"@oclif/plugin-not-found": "^1.2.3",
"@oclif/plugin-plugins": "^1.7.8",
"@oclif/plugin-update": "^1.3.9",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"chalk": "^2.4.2",
"debug": "^4.1.1",
"fs-extra": "^7.0.1",
"gulp-filter": "^5.1.0",
"inquirer": "^6.2.2",
"lodash": "^4.17.11",
"node-notifier": "^5.4.0",
"nps-utils": "^1.7.0",
"opn": "^5.4.0",
"pjson": "^1.0.9",
"prettier": "^1.16.4",
"sort-pjson": "^1.0.3",
"through2": "^3.0.1",
"tslib": "^1.9.3",
"turbocommons-ts": "^1.1.0",
"winston": "^3.2.1",
"yeoman-environment": "^2.3.4",
"yeoman-generator": "^3.2.0",
"yosay": "^2.0.2"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1.2.5",
"@oclif/tslint": "^3.1.1",
"@types/chai": "^4",
"@types/fs-extra": "^5.0.5",
"@types/gulp-filter": "^3.0.33",
"@types/inquirer": "^6.5.0",
"@types/lodash": "^4.14.121",
"@types/mocha": "^5",
"@types/node": "^10",
"@types/opn": "^5.1.0",
"@types/prettier": "^1.16.1",
"@types/read-pkg": "^3.0.0",
"@types/shelljs": "^0.8.3",
"@types/sinon": "^7.0.9",
"@types/through2": "^2.0.34",
"@types/yeoman-assert": "^3.1.1",
"@types/yeoman-generator": "^3.1.0",
"@types/yeoman-test": "^2.0.1",
"@types/yosay": "^0.0.29",
"chai": "^4.2.0",
"eslint": "^6.2.2",
"eslint-config-oclif": "^3.1.0",
"eslint-utils": "^1.4.2",
"execa": "^1.0.0",
"fancy-test": "^1.4.3",
"globby": "^9.0.0",
"mocha": "^5.2.0",
"npm-run-path": "^2.0.2",
"nps": "^5.9.3",
"nyc": "^13.3.0",
"shelljs": "^0.8.3",
"sinon": "^7.2.5",
"tmp": "^0.0.33",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^1.9.1"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://www.daswag.tech",
"keywords": [
"oclif",
"Yeoman",
"Generator",
"Serverless",
"AWS",
"Web",
"Application"
],
"license": "Apache-2.0",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "daswag",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-autocomplete",
"@oclif/plugin-warn-if-update-available"
]
},
"repository": "daswag/daswag-cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "nyc -r lcov -e .ts mocha --timeout 40000 --slow 0 --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}