forked from virtuozzo/node-openstack-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.49 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
50
51
52
53
54
55
56
57
58
59
60
{
"version": "2.1.6",
"name": "openstack-wrapper",
"description": "A simple js wrapper for the Openstack APIs",
"contributors": [
{
"name": "bannedinsweden",
"email": "npm@jasonrobinson.info"
},
{
"name": "bnewby",
"email": "brnewby602@gmail.com"
},
{
"name": "pchavan",
"email": "priyankachavan88@gmail.com"
},
{
"name": "vincent99",
"email": "vincent@rancher.com"
},
{
"name": "dandreev",
"email": "dandreev@virtuozzo.com"
}
],
"license": "MIT",
"homepage": "http://github.com/virtuozzo/node-openstack-wrapper",
"keywords": [
"openstack",
"keystone",
"nova",
"neutron",
"glance"
],
"bugs": {
"url": "http://github.com/virtuozzo/node-openstack-wrapper/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/virtuozzo/node-openstack-wrapper.git"
},
"dependencies": {
"request": "~2",
"async": "~1"
},
"devDependencies": {
"nodeunit": "~0.9",
"rewire": "~2.5"
},
"main": "./index.js",
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"test": "./node_modules/nodeunit/bin/nodeunit ./test"
}
}