-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.3 KB
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
{
"name": "create-functionless",
"version": "0.1.0",
"description": "Create a Functionless CDK app.",
"files": [
"dist",
"templates/**/*"
],
"bin": {
"create-functionless": "./dist/index.js"
},
"scripts": {
"test:npm": "./bin/test-npm.sh",
"test:yarn": "./bin/test-yarn.sh",
"prerelease": "rimraf ./dist/",
"release": "esbuild --bundle src/index.ts --outfile=dist/index.js --platform=node",
"prepublishOnly": "npm run release"
},
"keywords": [
"functionless"
],
"author": "Functionless",
"license": "Apache-2.0",
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/mustache": "^4.2.1",
"@types/node": "^18.7.18",
"@types/prompts": "^2.0.14",
"@types/uuid": "^8.3.4",
"@types/validate-npm-package-name": "^4.0.0",
"aws-cdk-lib": "^2.40.0",
"chalk": "^5.0.1",
"commander": "^9.4.0",
"cross-spawn": "^7.0.3",
"esbuild": "^0.15.6",
"fl-exp": "^1.0.3",
"functionless": "^0.22.6",
"mustache": "^4.2.0",
"prompts": "^2.4.2",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"typescript": "^4.8.2",
"uuid": "^9.0.0",
"validate-npm-package-name": "^4.0.0"
},
"release": {
"branches": [
"main",
{
"name": "dev",
"prerelease": true
}
]
}
}