-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "serverless-api-blueprint",
"version": "0.1.0",
"engines": {
"node": ">=4.0"
},
"description": "Serverless API Blueprint - Generate API Docs as API Blurprint format ( https://apiblueprint.org ) from Serverless project ( http://www.serverless.com/ ).",
"author": "Hirkoi Arai",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hiroara/serverless-api-blueprint"
},
"keywords": [
"serverless framework plugin",
"serverless applications",
"serverless plugins",
"api gateway",
"lambda",
"aws",
"aws lambda",
"amazon",
"amazon web services",
"serverless.com"
],
"main": "index.js",
"bin": {},
"scripts": {
"test": "mocha tests/all"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.2.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^1.1.1",
"gulp-plumber": "^1.0.1",
"mocha": "^2.2.5"
},
"dependencies": {
"bluebird": "^3.0.6",
"chalk": "^1.1.1",
"handlebars": "^4.0.5",
"lodash": "^4.2.1",
"mkdirp": "^0.5.1"
}
}