-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "agentia-semaphore",
"version": "1.0.1",
"description": "Node.js wrapper for the Semaphore.co SMS gateway API",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node_modules/mocha/bin/mocha --reporter dot",
"spec": "node_modules/mocha/bin/mocha --reporter spec",
"cover": "istanbul cover node_modules/.bin/_mocha -- --reporter dot",
"lint": "eslint index.js lib test"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "https://[email protected]/AgentiaSystems/agentia-semaphore.git"
},
"keywords": [
"semaphore",
"sms",
"philippines",
"api"
],
"author": "Johnny Estilles <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AgentiaSystems/agentia-semaphore/issues"
},
"homepage": "https://github.com/AgentiaSystems/agentia-semaphore",
"devDependencies": {
"chai": "^3.0.0",
"eslint": "^0.22.1",
"istanbul": "^0.3.15",
"mocha": "^2.2.5",
"pre-commit": "^1.0.10",
"request": "^2.57.0",
"sinon": "^1.15.3",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"lodash": "^3.9.3",
"moment-timezone": "^0.4.0",
"request": "^2.56.0"
}
}