-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.17 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
{
"name": "sms-device",
"version": "0.0.10",
"description": "A library that provides an abstraction to send/receive sms through a modem. This library also provided an implementation that using gammu command line to communicate with the modem.",
"main": "index.js",
"engines": {
"node": ">= 4.0"
},
"scripts": {
"btest": "tsc -p test",
"test": "npm run btest && mocha test",
"integration-test": "tsc -p test/integration-tests && mocha test/integration-tests",
"build": "rm -rf build && mkdir build && tsc -p . && cp package.json build/package.json && cp README.md build/README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/irwansyahwii/sms-device.git"
},
"keywords": [
"gsm",
"modem",
"gammu",
"wavecom",
"sms",
"server"
],
"author": "Irwansyah",
"license": "MIT",
"bugs": {
"url": "https://github.com/irwansyahwii/sms-device/issues"
},
"homepage": "https://github.com/irwansyahwii/sms-device#readme",
"devDependencies": {
"chai": "^3.5.0",
"moment": "^2.14.1",
"raw-modem": "*",
"rxjs": "^5.0.0-beta.10"
},
"dependencies": {
"serialport": "^4.0.1"
}
}