-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.56 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
{
"name": "ttn-osem-integration",
"version": "1.0.0",
"description": "adapter for thethingsnetwork.org measurements to opensensemap.org ",
"main": "lib/index.js",
"scripts": {
"start": "node lib/index.js | bunyan -o short",
"start:rawlogs": "node lib/index.js",
"watch": "node-dev --respawn lib/index.js",
"tests": "./run_tests.sh",
"test": "nyc --check coverage --lines 98 --functions 90 --branches 98 mocha test",
"lint:ci": "eslint --ignore-pattern node_modules \"{test,lib}/**/*.js\"",
"lint": "eslint --ignore-pattern node_modules --fix \"{test,lib}/**/*.js\"",
"docs": "jsdoc -p README.md *.js lib/** -d docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sensebox/ttn-osem-integration.git"
},
"keywords": [
"TTN",
"osem",
"openSenseMap",
"LoRa",
"lorawan",
"sensorweb",
"open",
"data"
],
"author": "github.com/noerw",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/sensebox/ttn-osem-integration/issues"
},
"homepage": "https://github.com/sensebox/ttn-osem-integration#readme",
"dependencies": {
"@sensebox/opensensemap-api-models": "^1.2.0",
"body-parser": "^1.17.2",
"bunyan": "^1.8.12",
"config": "^2.0.1",
"express": "^4.15.4",
"lora-serialization": "^3.0.1"
},
"devDependencies": {
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"chai-things": "^0.2.0",
"chakram": "^1.5.0",
"eslint": "^4.4.0",
"jsdoc": "^3.5.4",
"mocha": "^3.5.0",
"node-dev": "^3.1.3",
"nyc": "^11.1.0"
}
}