forked from AlCalzone/node-coap-client
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
95 lines (95 loc) · 2.33 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "node-coap-client",
"version": "1.0.0",
"description": "Clientside implementation of the CoAP protocol with DTLS support.",
"keywords": [
"coap",
"coaps",
"dtls",
"iot",
"tradfri"
],
"main": "./build/CoapClient.js",
"types": "./build/CoapClient.d.ts",
"author": {
"name": "AlCalzone",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/AlCalzone/node-coap-client",
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/chai-as-promised": "^7.1.0",
"@types/debug": "0.0.30",
"@types/mocha": "^5.2.0",
"@types/node": "^6.0.88",
"@types/yargs": "^11.1.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"colors": "^1.3.1",
"coveralls": "^3.0.1",
"mocha": "^5.1.1",
"nyc": "^11.7.1",
"proxyquire": "^2.0.1",
"rimraf": "^2.6.2",
"semver": "^5.5.0",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0",
"source-map-support": "^0.5.5",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"typescript": "^2.8.3",
"yargs": "^11.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlCalzone/node-coap-client.git"
},
"dependencies": {
"react-native-dtls-client": "netbeast/react-native-dtls-client",
"react-native-crypto": "tradle/react-native-crypto",
"react-native-udp": "2.1.0",
"url": "^0.11.0"
},
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"build": "tsc",
"prebuild": "rimraf ./build",
"watch": "tsc --watch",
"test:ts": "node_modules/.bin/mocha",
"test": "npm run test:ts",
"coverage": "node_modules/.bin/nyc npm test",
"coveralls": "node_modules/.bin/nyc report --reporter=text-lcov | coveralls -v",
"show-coverage": "npm run coverage && start ./coverage/index.html",
"lint:ts": "tslint",
"lint": "npm run lint:ts \"src/**/*.ts\"",
"release": "node --require ts-node/register maintenance/release.ts"
},
"nyc": {
"all": true,
"include": [
"src/**/*.ts"
],
"exclude": [
"build/**",
"src/**/*.test.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"text-summary",
"html",
"lcov"
],
"sourceMap": true,
"instrument": true
},
"readme": "README.md"
}