forked from serverless/serverless
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.72 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
{
"name": "serverless",
"version": "0.5.5",
"engines": {
"node": ">=4.0"
},
"preferGlobal": true,
"description": "The Serverless Application Framework - Powered By Amazon Web Services - http://www.serverless.com",
"author": "serverless.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/serverless/serverless"
},
"keywords": [
"serverless",
"serverless framework",
"serverless applications",
"serverless modules",
"api gateway",
"lambda",
"aws",
"aws lambda",
"amazon",
"amazon web services",
"dynamodb",
"serverless.com"
],
"main": "lib/Serverless.js",
"bin": {
"serverless": "./bin/serverless",
"slss": "./bin/serverless",
"sls": "./bin/serverless",
"serverless-run-python-handler": "./bin/serverless-run-python-handler"
},
"scripts": {
"test": "mocha tests/all",
"lint": "eslint . || true"
},
"devDependencies": {
"chai": "^3.2.0",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^7.0.0",
"eslint-plugin-react": "^4.3.0",
"mocha": "^2.2.5",
"node-uuid": "^1.4.2",
"rimraf": "^2.4.3"
},
"dependencies": {
"async": "^1.5.2",
"aws-sdk": "^2.2.40",
"bluebird": "^3.2.1",
"chalk": "^1.1.0",
"cli-spinner": "^0.2.1",
"debug": "^2.2.0",
"dotenv": "^2.0.0",
"fs-extra": "^0.26.4",
"glob": "^7.0.0",
"https-proxy-agent": "^1.0.0",
"js-yaml": "^3.5.5",
"json-diff": "^0.3.1",
"keypress": "^0.2.1",
"lodash": "^4.2.1",
"minimist": "^1.2.0",
"moment": "^2.11.2",
"node-zip": "^1.1.0",
"prompt": "^0.3.0",
"replaceall": "^0.1.6",
"shelljs": "^0.6.0",
"shortid": "^2.2.2",
"traverse": "^0.6.6"
}
}