-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.23 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
{
"name": "node-pxgrid",
"version": "1.3.0",
"description": "A node library for the Cisco pxGrid 2.0 web socket based-service.",
"main": "index.js",
"author": {
"name": "Ryan Wolfe",
"email": "rn.wolfe@gmail.com",
"url": "https://github.com/rnwolfe"
},
"license": "MIT",
"scripts": {
"lint": "./node_modules/.bin/eslint -c .eslintrc.json ./lib/ ./examples/",
"lint:fix": "./node_modules/.bin/eslint --fix -c .eslintrc.json ./lib/ ./examples/",
"docs": "rm -rf ./docs; ./node_modules/.bin/jsdoc -c .jsdoc.json"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"docdash": "^1.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-prettier": "^3.0.1",
"jsdoc": "^3.6.6",
"prettier": "^1.17.0"
},
"dependencies": {
"@stomp/stompjs": "^5.2.0",
"axios": "^0.21.1",
"express": "^4.16.4",
"ws": "^6.1.3"
},
"keywords": [
"cisco",
"pxgrid",
"ise",
"rest",
"ws",
"stomp"
],
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rnwolfe/node-pxgrid.git"
},
"bugs": {
"url": "https://github.com/rnwolfe/node-pxgrid/issues"
}
}