forked from larvit/larvitsmpp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.26 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
53
54
55
56
57
58
59
60
{
"name": "larvitsmpp",
"version": "0.3.1",
"author": {
"name": "Mikael 'Lilleman' Göransson",
"email": "[email protected]",
"url": "http://github.com/larvit/larvitsmpp"
},
"private": false,
"contributors": [],
"dependencies": {
"async": "^1.5.2",
"iconv-lite": "^0.4.13",
"moment": "^2.13.0",
"utils-merge": "^1.0.0",
"winston": "^2.2.0"
},
"description": "Simplified SMPP implementation",
"devDependencies": {
"coveralls": "^2.11.9",
"eslint": "^2.11.1",
"istanbul": "^0.4.3",
"mocha": "^2.5.3",
"portfinder": "^1.0.3",
"pre-git": "^3.8.4"
},
"keywords": [
"smpp",
"pdu",
"sms"
],
"main": "larvitsmpp.js",
"repository": {
"url": "https://github.com/larvit/larvitsmpp",
"type": "git"
},
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/larvit/larvitsmpp/issues"
},
"homepage": "https://github.com/larvit/larvitsmpp",
"scripts": {
"cover": "istanbul cover _mocha",
"test": "mocha"
},
"license": "MIT",
"config": {
"pre-git": {
"commit-msg": "",
"pre-commit": [
"eslint ./",
"mocha"
],
"pre-push": [],
"post-commit": [],
"post-checkout": [],
"post-merge": []
}
}
}