-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1022 Bytes
/
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
{
"name": "lora-application-server",
"version": "1.0.0",
"description": "lora-application-server",
"main": "./bin/lora-application-server",
"scripts": {
"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-application-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": {
"bluebird": "^3.5.1",
"ioredis": "^2.5.0",
"kafka-node": "^2.3.0",
"lodash": "^4.17.4",
"mysql2": "^1.5.1",
"protobufjs": "^6.8.0",
"sequelize": "^4.22.6",
"winston": "^3.0.0-rc1",
"moment": "^2.22.2",
"mongoose": "^5.7.5"
},
"pre-commit": [
"test",
"lint"
]
}