-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "@starak/sim800c",
"version": "2.1.2",
"description": "Simple library for sending and receiving messages with sim800c",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"dev": "nodemon local.ts",
"test": "nodemon ./test/main.ts"
},
"author": {
"name": "Ståle Raknes",
"email": "[email protected]",
"url": "https://github.com/starak"
},
"repository": {
"type": "git",
"url": "https://github.com/starak/sim800c.git"
},
"license": "MIT",
"dependencies": {
"console-stamp": "^3.1.2",
"eventemitter3": "^5.0.1",
"node-pdu": "^2.0.2",
"p-queue": "^6.6.2",
"serialport": "^10.5.0"
},
"devDependencies": {
"@types/node": "^17.0.21",
"dotenv": "^16.3.1",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"keywords": [
"gsm",
"serialport",
"sim800c",
"sms",
"pdu"
]
}