forked from corenova/yang-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.12 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
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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "yang-js",
"version": "0.17.19",
"description": "YANG parser and evaluator",
"keywords": [
"yang",
"compile",
"compose",
"parse",
"expression",
"require",
"model",
"schema",
"adaptive",
"validate",
"object",
"rfc6020"
],
"author": "Peter Lee <[email protected]> (http://corenova.com)",
"homepage": "https://github.com/corenova/yang-js",
"license": "Apache-2.0",
"repository": "corenova/yang-js",
"main": "index.js",
"browser": "browser.js",
"models": {
"iana-crypt-hash": "./schema/iana-crypt-hash.yang",
"ietf-yang-types": "./schema/ietf-yang-types.yang",
"ietf-inet-types": "./schema/ietf-inet-types.yang",
"ietf-yang-library": "./schema/ietf-yang-library.js",
"yang-meta-types": "./schema/yang-meta-types.yang"
},
"dependencies": {
"clone": "^2.1.0",
"co": "^4.6.0",
"debug": "^2.2.0",
"delegates": "^1.0.0",
"indent-string": "^2.1.0",
"promise": "^7.1.1",
"semver": "^5.3.0",
"stacktrace-parser": "^0.1.4",
"xparse": "^1.0.0",
"yang-parser": "^0.2.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.0",
"babelify": "^7.3.0",
"brfs": "^1.4.3",
"browserify": "^13.1.0",
"coffee-script": ">=1.7.0",
"minifyify": "^7.3.4",
"mocha": "~2.0.1",
"rimraf": "^2.5.2",
"should": "~3.1.3",
"ts-loader": "^1.3.3",
"typescript": "^2.1.4",
"uglify-js": "git://github.com/mishoo/UglifyJS2#harmony",
"webpack": "^1.14.0"
},
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"clean": "rimraf dist/* lib/*",
"prebuild": "npm run clean -s && mkdir -p dist",
"build:src": "coffee -o lib -c src",
"build:dev": "browserify -t babelify -t brfs -i crypto -i buffer -r promise/polyfill.js . > dist/yang.js",
"build:web": "browserify -t babelify -t brfs -p [ minifyify --no-map ] -i crypto -i buffer -r promise/polyfill.js . > dist/yang.min.js",
"build": "npm run build:src && npm run build:web",
"prepublish": "npm run build",
"pretest": "npm run build:src",
"test": "mocha"
},
"babel": {
"presets": [
"es2015"
]
}
}