-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
53 lines (53 loc) · 1.6 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
{
"name": "lwm2m-node-lib",
"description": "Library for developing servers and client of OMA Lightweight M2M",
"version": "1.4.0-next",
"homepage": "https://github.com/telefonicaid/lwm2m-node-lib",
"author": {
"name": "Daniel Moran",
"email": "daniel.moranjimenez@telefonica.com"
},
"repository": {
"type": "git",
"url": "git://github.com/telefonicaid/lwm2m-node-lib"
},
"bugs": {
"url": "https://github.com/telefonicaid/lwm2m-node-lib/issues"
},
"main": "lib/lwm2m-node-lib",
"engines": {
"node": ">=12"
},
"scripts": {
"clean": "rm -rf package-lock.json && rm -rf node_modules && rm -rf coverage",
"test": "mocha --recursive 'test/**/*.js' --reporter spec --timeout 3000 --ui bdd --exit",
"test:watch": "npm run test -- -w ./lib",
"lint": "jshint lib/ --config .jshintrc && jshint test/ --config test/.jshintrc",
"test:coverage": "istanbul cover _mocha -- --recursive 'test/**/*.js' --reporter spec --exit",
"watch": "watch 'npm test && npm run lint' ./lib ./test"
},
"bin": {
"iotagent-lwm2m-client": "bin/iotagent-lwm2m-client.js",
"iotagent-lwm2m-server": "bin/iotagent-lwm2m-server.js"
},
"dependencies": {
"async": "2.6.1",
"coap": "0.22.0",
"coap-cli": "0.5.1",
"command-node": "0.1.1",
"logops": "2.1.2",
"mongodb": "3.6.1",
"mongoose": "5.7.7",
"mongoose-plugin-autoinc": "1.1.9",
"underscore": "1.12.1"
},
"devDependencies": {
"istanbul": "~0.4.5",
"jshint": "~2.9.6",
"mocha": "5.2.0",
"proxyquire": "2.1.0",
"should": "13.2.3",
"watch": "~1.0.2"
},
"keywords": []
}