blob: 1e67777d928d02b6f8f2e2d178fa6cf345536e6a [file] [log] [blame]
Matteo Scandoloe3ed0162016-12-01 10:09:12 -08001{
2 "name": "xos_nb_rest",
3 "version": "1.0.0",
4 "description": "Northbound REST and WebSocket interfaces for XOS",
5 "main": "src/server.js",
6 "scripts": {
7 "start": "node src/server.js",
Matteo Scandolo7e05dc82017-09-25 14:57:21 -07008 "test": "LOG_LEVEL=error nyc --reporter=html mocha spec/**/*.spec.js",
Matteo Scandoloe3ed0162016-12-01 10:09:12 -08009 "test:dev": "mocha -w spec/**/*.spec.js",
10 "lint": "eslint ."
11 },
Matteo Scandolo7e05dc82017-09-25 14:57:21 -070012 "author": "Open Networking Foundation",
Matteo Scandoloe3ed0162016-12-01 10:09:12 -080013 "license": "Apache-2.0",
14 "dependencies": {
15 "body-parser": "^1.15.2",
16 "cors": "^2.8.1",
17 "express": "^4.14.0",
18 "lodash": "^4.17.2",
19 "node-yaml-config": "0.0.4",
20 "redis": "^2.6.3",
21 "socket.io": "^1.7.1",
22 "superagent": "^3.1.0",
23 "winston": "^2.3.0",
24 "yargs": "^6.4.0"
25 },
26 "devDependencies": {
27 "chai": "^3.5.0",
28 "eslint": "^3.11.1",
29 "eslint-plugin-import": "^2.2.0",
30 "fakeredis": "^1.0.3",
31 "mocha": "^3.2.0",
32 "mockery": "^2.0.0",
Matteo Scandolo7e05dc82017-09-25 14:57:21 -070033 "nyc": "^11.2.1",
Matteo Scandoloe3ed0162016-12-01 10:09:12 -080034 "sinon": "^1.17.6",
35 "sinon-chai": "^2.8.0",
Matteo Scandoloc3e23482016-12-01 10:13:57 -080036 "socket.io-client": "^1.7.1",
Matteo Scandoloe3ed0162016-12-01 10:09:12 -080037 "supertest": "^2.0.1"
38 }
39}