-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.08 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
{
"name": "the-things-network",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://ttn-node-sdk.fuota.io/",
"description": "The user-friendly Node.js SDK to boost connectivity and data management within The Things Network's LoRaWAN infrastructure.",
"author": "fuota",
"license": "MIT",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"copy-assets": "node copy-assets.js",
"docs": "jsdoc -c jsdoc.json",
"test": "jest",
"test:single": "jest ../../src/test/endDevice.test.ts"
},
"keywords": [
"the things stack",
"the things network",
"the things industries",
"lorawan",
"lora",
"iot",
"lns",
"lorawan network server",
"ttn",
"tts",
"tti",
"things",
"fuota",
"firmware update",
"identity server",
"join server",
"application server",
"network server",
"ttn-sdk",
"ttn sdk"
],
"repository": {
"type": "git",
"url": "https://github.com/fuota-io/The-Things-Network-NodeJS-SDK.git"
},
"contributors": [
"Meet Savaj (https://github.com/meetsavaj10)"
],
"engines": {
"node": ">=16.0.0"
},
"files": [
"/dist/**",
"LICENSE",
"SECURITY.md",
"README.md",
"index.js",
"index.d.ts",
"package.json"
],
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@types/jest": "^29.4.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"babel-jest": "^29.4.3",
"clean-jsdoc-theme": "^4.2.9",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.4.3",
"jsdoc": "^4.0.2",
"ncp": "^2.0.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^1.3.4",
"mqtt": "^4.3.7",
"node": "^19.6.0"
}
}