-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.45 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.45 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
65
66
67
{
"name": "yang-forge",
"version": "2.0.0",
"description": "YANG package manager and runtime engine",
"keywords": [
"yang",
"restjson",
"restconf",
"build",
"deploy",
"translate",
"package",
"publish",
"run",
"engine",
"core",
"forge",
"rfc6020",
"yfc"
],
"author": "Peter Lee <peter@corenova.com>",
"homepage": "https://github.com/corenova/yang-forge",
"license": "Apache-2.0",
"repository": "corenova/yang-forge",
"main": "lib/index.js",
"bin": {
"yfc": "bin/yfc"
},
"models": {
"ietf-inet-types": "yang-js",
"ietf-yang-types": "yang-js",
"yang-meta-types": "yang-js",
"file-system": "./lib/file-system.js",
"node-package-manager": "./lib/node-package-manager.js",
"yang-forge": "./lib/yang-forge.js"
},
"dependencies": {
"co-fs": "^1.2.0",
"co-read": "^0.1.1",
"colors": "^1.1.2",
"commander": "^2.9.0",
"detective": "^4.3.2",
"gunzip-maybe": "^1.3.1",
"js-yaml": "^3.7.0",
"mkdirp": "^0.5.1",
"prettyjson": "^1.1.3",
"semver": "^5.3.0",
"superagent": "^3.3.1",
"tar-fs": "^1.14.0",
"thunkify": "^2.1.2",
"traverse": "^0.6.6",
"treeify": "^1.0.1",
"uuid": "^3.0.1",
"yang-js": "^0.16.19"
},
"devDependencies": {
"mocha": "~2.0.1",
"should": "~3.1.3"
},
"engines": {
"node": ">=0.10.28"
},
"scripts": {
"prepublish": "coffee -o lib -c src",
"start": "bin/yfc run"
}
}