-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.05 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
{
"name": "sim800",
"version": "0.4.0",
"description": "A modern and opiniated module for SIM800 GSM modems ( SIM800 / SIM800L ).",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"prepublish": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/julienfdev/sim800.git"
},
"keywords": [
"sim800",
"sim800l",
"gsm",
"sms",
"serialport",
"modem",
"AT",
"AT",
"command"
],
"author": "Julien Ferand",
"license": "ISC",
"bugs": {
"url": "https://github.com/julienfdev/sim800/issues"
},
"homepage": "https://github.com/julienfdev/sim800#readme",
"dependencies": {
"node-pdu": "^2.0.2",
"pdu.ts": "^1.1.4",
"rxjs": "^7.8.1",
"serialport": "^11.0.1"
},
"devDependencies": {
"@types/node": "^20.5.6",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"typescript": "^5.2.2"
}
}