-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
43 lines (43 loc) · 977 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": "coap-packet",
"version": "1.1.1",
"description": "Generate and Parse CoAP packets",
"main": "index.js",
"scripts": {
"tstest": "tsc -p ./ts",
"test": "nyc mocha --exit --check-leaks && npm run tstest",
"coverage": "nyc report --reporter=lcov --reporter=text-summary",
"lint": "standard --env mocha",
"lint:fix": "standard --fix --env mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/mcollina/coap-packet.git"
},
"pre-commit": [
"test"
],
"keywords": [
"coap",
"m2m",
"iot",
"udp",
"packet"
],
"engines": {
"node": ">= 0.10"
},
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.9.1",
"chai": "^4.3.4",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"standard": "^16.0.3",
"typescript": "^4.4.3"
},
"types": "index.d.ts",
"typings": "index.d.ts"
}