-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "lora-network-server",
"version": "1.0.0",
"description": "LoRa Network Server. Analysis and process all LoRa data.",
"main": "./bin/lora-network-server",
"scripts": {
"buildTables": "node models/BuildTables.js",
"test": "mocha --recursive",
"lint": "files=$(git diff --cached --name-only --diff-filter=ACM | grep '\\.js$'); jshint $files && jscs $files"
},
"repository": {
"type": "git",
"url": "[email protected]:xisiot/lora-network-server"
},
"keywords": [
"lora"
],
"author": "xisiot Co., Ltd.",
"license": "ISC",
"devDependencies": {
"chai": "^4.1.2",
"chai-json-schema-ajv": "^1.0.0",
"jscs": "^3.0.7",
"jshint": "^2.9.5",
"mocha": "^4.0.1",
"pre-commit": "^1.2.2"
},
"dependencies": {
"ajv": "^6.5.2",
"bluebird": "^3.5.1",
"ioredis": "^2.5.0",
"kafka-node": "^2.3.0",
"koa": "^2.5.2",
"koa-bodyparser": "^4.2.1",
"koa-route": "^3.2.0",
"lodash": "^4.17.4",
"mongoose": "^5.2.3",
"mysql2": "^1.5.1",
"protobufjs": "^6.8.0",
"sequelize": "^4.22.6",
"winston": "^3.0.0-rc3"
},
"pre-commit": [
"lint",
"test"
]
}