-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "create-cdk-app",
"version": "0.1.6",
"keywords": [
"cdk",
"aws",
"create-app",
"aws-cdk"
],
"description": "Create CDK-powered apps with one command",
"repository": {
"type": "git",
"url": "https://github.com/cdk-tools/create-cdk-app"
},
"author": "Joe Snell <[email protected]>",
"license": "MIT",
"bin": {
"create-cdk-app": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "ncc build ./index.ts -w -o dist/",
"prerelease": "rimraf ./dist/",
"build": "ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register",
"lint": "eslint . --ext .ts"
},
"devDependencies": {
"@types/prompts": "^2.0.8",
"@types/rimraf": "^3.0.0",
"@types/tar": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"@zeit/ncc": "^0.22.3",
"arg": "^4.1.3",
"chalk": "^4.0.0",
"eslint": "^7.2.0",
"got": "^11.3.0",
"make-dir": "^3.1.0",
"prompts": "^2.3.2",
"rimraf": "^3.0.2",
"tar": "^6.0.2",
"typescript": "^3.9.5",
"update-check": "^1.5.4"
}
}