-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.1 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.1 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
{
"name": "cucloud",
"version": "0.1.0",
"author": {
"name": "Eric Grysko",
"email": "eric@ericgrysko.com",
"url": "https://www.ericgrysko.com/"
},
"contributors": [],
"description": "Implementation of the Cornell Cloud Library Spec for JavaScript.",
"main": "index.js",
"bin": {
"cucloud-js-schema": "./lib/bin/schema.js"
},
"scripts": {
"lint": "eslint lib/ examples/ *.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "git://github.com/ericgrysko/cucloud-nodejs.git",
"keywords": [
"cornell",
"AWS",
"lambda",
"SNS",
"GitHub",
"DynamoDB"
],
"engines": {
"node": ">=4.3.0"
},
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.3.14",
"commander": "^2.9.0",
"github-api": "^1.2.1",
"joi": "^8.1.0",
"lodash": "^4.12.0",
"merge": "^1.2.0",
"npmlog": "^2.0.4",
"vogels": "^2.2.0",
"yamljs": "^0.2.7"
},
"devDependencies": {
"eslint": "^2.10.2",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2"
}
}