forked from corenova/yang-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.74 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
79
80
81
82
{
"name": "yang-js",
"version": "0.24.64",
"description": "YANG parser and evaluator",
"keywords": [
"yang",
"compile",
"compose",
"parse",
"expression",
"require",
"model",
"schema",
"adaptive",
"validate",
"object",
"rfc6020"
],
"author": "Peter Lee <peter@corenova.com> (http://corenova.com)",
"homepage": "https://github.com/corenova/yang-js",
"license": "Apache-2.0",
"repository": "corenova/yang-js",
"main": "index.js",
"types": "index.d.ts",
"browser": "browser.js",
"yang": {
"search": [
"./schema"
],
"order": [
".js",
".yang"
]
},
"dependencies": {
"debug": "^4.1.1",
"delegates": "^1.0.0",
"indent-string": "^2.1.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",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coffeescript": "2",
"minifyify": "^7.3.5",
"mocha": "^7.1.2",
"rimraf": "^2.5.2",
"should": "~3.1.3"
},
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"clean": "rimraf dist/* lib/*",
"prepare:clean": "yarn clean -s && mkdir -p dist",
"prepare:src": "coffee -o lib -c src",
"prepare": "yarn prepare:clean && yarn prepare:src",
"prepublishOnly": "yarn test && browserify -t babelify -t brfs -i crypto -i buffer . > dist/yang.js",
"pretest": "yarn prepare:src",
"test": "mocha"
},
"babel": {
"presets": [
"es2015"
]
},
"mocha": {
"require": [
"chai",
"should",
"coffeescript/register"
],
"sort": true,
"spec": "test/*.coffee"
}
}