-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1014 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-join-server",
"version": "1.0.0",
"description": "LoRa Join Server, for join requests",
"main": "index.js",
"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-join-server"
},
"keywords": [
"join server"
],
"author": "Xisiot",
"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",
"kafka-node": "^2.3.0",
"mysql2": "^1.5.0",
"node-aes-cmac": "^0.1.1",
"package.json": "^2.0.1",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"sequelize": "^4.22.6",
"sequelize-cli": "^3.0.0",
"winston": "^3.0.0"
},
"pre-commit": [
"test",
"lint"
]
}