-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
{
"name": "modemjs",
"version": "1.2.4",
"description": "NPM package to simplify sending and receiving SMS with a GSM Modem on Node.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"No test specified. Testing will be skipped\" && exit 0",
"build": "tsc",
"format": "npx prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jruipinto/modemjs.git"
},
"keywords": [
"modem",
"gsm",
"SMS",
"AT",
"AT commands"
],
"author": "J Rui Pinto",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jruipinto/modemjs/issues"
},
"homepage": "https://jruipinto.github.io/modemjs/",
"dependencies": {
"ramda": "^0.26.1",
"rxjs": "^6.5.3",
"serialport": "^8.0.5"
},
"devDependencies": {
"@types/node": "^13.1.0",
"@types/ramda": "^0.26.38",
"@types/serialport": "^7.0.4",
"prettier": "^1.19.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.4"
},
"files": [
"lib/**/*"
]
}