forked from sekur/opnfv-promise
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.65 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
61
62
63
64
{
"name": "opnfv-promise",
"version": "1.2.0",
"description": "Resource Management for Virtualized Infrastructure",
"author": "Peter K. Lee <peter@corenova.com>",
"license": "Apache-2.0",
"homepage": "http://wiki.opnfv.org/promise",
"repository": "opnfv/promise",
"keywords": [
"opnfv",
"promise",
"vim",
"nfvi",
"infrastructure",
"openstack",
"nbi",
"yangjs",
"yangforge",
"resource",
"reservation",
"capacity",
"allocation"
],
"models": {
"ietf-yang-types": "yang-js",
"ietf-inet-types": "yang-js",
"yang-meta-types": "yang-js",
"openstack-controller": "./lib/openstack-controller.js",
"opnfv-infrastructure": "./lib/opnfv-infrastructure.js",
"opnfv-promise": "./lib/opnfv-promise.js"
},
"main": "./lib/opnfv-promise.js",
"bin": {
"xos": "bin/promise"
},
"preferGlobal": true,
"dependencies": {
"config": "^1.24.0",
"node-uuid": "^1.4.7",
"superagent": "^2.0.0",
"yang-express": "^0.4.7",
"yang-js": "^0.16.18",
"yang-swagger": "^1.2.2"
},
"devDependencies": {
"coffee-script": ">=1.7.0",
"config": "^1.19.0",
"mocha": "~2.0.1",
"rimraf": "^2.5.2",
"should": "~3.1.3",
"yang-swagger": "^1.2.1"
},
"scripts": {
"clean": "rimraf dist/* lib/*",
"prebuild": "npm run clean -s && mkdir -p dist",
"build:src": "coffee -o lib -c src",
"build:api": "yang-swagger -f yaml -o swagger.yaml opnfv-promise opnfv-infrastructure",
"build": "npm run build:src && npm run build:api",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "mocha",
"start": "bin/promise opnfv-promise"
}
}