forked from thesolarnomad/lora-serialization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.27 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
{
"name": "lora-serialization",
"version": "3.0.0",
"description": "LoraWAN serialization/deserialization library for The Things Network",
"main": "src/index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/thesolarnomad/lora-serialization"
},
"scripts": {
"coverage": "nyc report --reporter=lcov",
"coveralls": "lcov-result-merger 'coverage/*.info' | coveralls",
"lint": "eslint .",
"test": "nyc ava",
"test:watch": "ava --watch",
"test:c": "./.ci/run_c_tests.sh",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"lora",
"lorawan",
"ttn",
"thethingsnetwork",
"arduino",
"serialization",
"deserialization",
"cpp"
],
"author": "Joscha Feth <[email protected]>",
"license": "MIT",
"devDependencies": {
"ava": "^0.18.2",
"coveralls": "^2.11.16",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.0.1",
"lcov-result-merger": "^1.2.0",
"nyc": "^10.1.2",
"semantic-release": "^6.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"ava": {
"files": [
"test/**/*.js",
"!test/base.js"
]
}
}