forked from leopardslab/nodecloud-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "nodecloud",
"version": "0.1.0",
"description": "Unified API for cloud providers",
"main": "lib/index.js",
"scripts": {
"test": "mocha test/compute/ec2.js",
"coverage": "istanbul --include-all-sources cover _mocha -- -R dot --recursive test/",
"lint": "eslint"
},
"repository": "https://github.com/cloudlibz/nodecloud",
"author": "scorelab",
"license": "Apache-2.0",
"dependencies": {
"aws-sdk": "^2.50.0",
"config": "^1.26.1",
"google-cloud": "^0.54.0",
"keymirror": "^0.1.1"
},
"keywords": [
"nodecloud",
"nodejs",
"node",
"node-cloud",
"node-aws",
"node-azure"
],
"bugs": {
"url": "https://github.com/cloudlibz/nodecloud/issues"
},
"homepage": "https://github.com/cloudlibz/nodecloud#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^3.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.2.0",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"nock": "^9.0.13"
}
}