-
Notifications
You must be signed in to change notification settings - Fork 180
/
package.json
39 lines (39 loc) · 947 Bytes
/
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
{
"name": "smpp",
"version": "0.6.0-rc.4",
"description": "SMPP client and server implementation in node.js",
"homepage": "https://github.com/farhadi/node-smpp",
"bugs": "https://github.com/farhadi/node-smpp/issues",
"author": "Ali Farhadi <a.farhadi@gmail.com>",
"contributors": [
"Julián Gutiérrez <juliangut@gmail.com>"
],
"engines": {
"node": ">=4"
},
"main": "./lib/smpp",
"repository": {
"type": "git",
"url": "https://github.com/farhadi/node-smpp.git"
},
"license": "MIT",
"files": [
"lib/",
"index.js"
],
"scripts": {
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"test_coverage": "nyc --reporter=text mocha",
"test": "mocha"
},
"devDependencies": {
"coveralls": "^2.11.9",
"mocha": "^5.2.0",
"nyc": "^12.0.2"
},
"dependencies": {
"findhit-proxywrap": "^0.3.12",
"iconv-lite": "0.x",
"safer-buffer": ">= 2.1.2 < 3"
}
}