-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.8 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
{
"name": "aws-lambda-template-generator",
"version": "1.4.1",
"description": "AWS Lambda template generator",
"main": "index.js",
"homepage": "https://github.com/aws-lambda-template-generator",
"repository": {
"type": "git",
"url": "https://github.com/aws-lambda-template-generator/generator"
},
"author": "mdh",
"license": "MIT",
"private": false,
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bin": {
"generate-lambda-template": "lib/cli.js"
},
"files": [
"lib"
],
"keywords": [
"aws-lambda-template-generator",
"Serverless",
"SAM",
"Template generator",
"CLI tool",
"AWS Lambda"
],
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha --recursive --timeout 30000 lib/**/*.spec.js",
"test:watch": "mocha --recursive --timeout 30000 lib/**/*.spec.js --watch",
"integration": "mocha --recursive --timeout 300000 integration/**/*.spec.js",
"testCli": "node ./lib/cli.js",
"build": "parcel 'ink-support'/example.jsx",
"commit": "cz"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"download-git-repo": "^3.0.2",
"ink": "^3.0.8",
"install": "^0.13.0",
"react": "^17.0.1",
"recursive-copy": "^2.0.10"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.0",
"@semantic-release/release-notes-generator": "^10.0.3",
"chai": "^4.2.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.4.0",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"parcel-bundler": "^1.12.4",
"semantic-release": "^19.0.2",
"sinon": "^9.0.2"
}
}