-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.63 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "lora-http-server",
"version": "1.0.0",
"description": "LoRa Http Server. provide http apis for web.",
"main": "./bin/lora-http-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-http-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",
"fs": "0.0.1-security",
"ioredis": "^2.5.0",
"kafka-node": "^2.3.0",
"koa": "^2.5.2",
"koa-bodyparser": "^4.2.1",
"koa-cors": "0.0.16",
"koa-morgan": "^1.0.1",
"koa-route": "^3.2.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.15",
"mongoose": "^5.2.3",
"mysql2": "^1.5.1",
"nodemon": "^1.19.2",
"protobufjs": "^6.8.0",
"sequelize": "^4.22.6",
"validatorjs": "^3.17.1",
"winston": "^3.0.0-rc3"
},
"pre-commit": [
"lint"
],
"apidoc": {
"name": "lora-httpServer-apis",
"url": "",
"header": {
"title": "Document",
"filename": "apidoc_header.md"
},
"order": [
"User",
"Login",
"Application",
"Device",
"Gateway"
],
"template": {
"forceLanguage": "en",
"withCompare": true,
"withGenerator": true
}
}
}