forked from cisco-ce/jsxapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.1 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
83
84
85
86
87
88
89
90
{
"name": "jsxapi",
"version": "4.1.3",
"description": "JavaScript bindings for XAPI",
"author": {
"name": "Martin Øinæs Myrseth",
"email": "mmyrseth@cisco.com"
},
"license": "MIT",
"engines": {
"node": ">=8.x",
"npm": ">=5.x"
},
"main": "lib/index.js",
"bin": {
"jsxapi": "./lib/cli.js"
},
"repository": {
"type": "git",
"url": "git@github.com:cisco-ce/jsxapi.git"
},
"scripts": {
"build": "npm run build:js && npm run build:docs",
"build:docs": "esdoc",
"build:js": "babel -d lib/ src/",
"clean": "rimraf docs lib",
"lint": "eslint .",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"start": "node -r babel-register ./src/cli.js",
"test": "npm run lint && mocha",
"tdd": "mocha --watch --reporter min"
},
"dependencies": {
"commander": "^2.13.0",
"duplex-passthrough": "^1.0.2",
"duplexer": "^0.1.1",
"jsonparse": "^1.3.1",
"loglevel": "^1.6.1",
"ssh2": "^0.5.5",
"url-parse": "^1.2.0",
"ws": "^4.0.0",
"xml-escape": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.23.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-properties": "^1.3.0",
"dirty-chai": "^2.0.1",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-importpath-plugin": "^1.0.2",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^3.16.1",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"json-loader": "^0.5.4",
"mocha": "^5.2.0",
"rimraf": "^2.6.1",
"sinon": "^4.5.0",
"sinon-chai": "^2.14.0"
},
"babel": {
"plugins": [
"transform-class-properties",
[
"transform-builtin-extend",
{
"globals": [
"Error"
]
}
]
],
"presets": [
[
"env",
{
"node": 8
}
]
]
}
}