-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.72 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
61
62
63
64
65
66
{
"name": "hubot-ringcentral-sms",
"version": "0.3.0",
"description": "RingCentral SMS Adapter for Hubot",
"scripts": {
"pretest": "coffeelint ./src",
"test": "npm run mocha && istanbul report text-summary lcov",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"mocha": "mocha --compilers coffee:coffee-script/register --require coffee-coverage/register-istanbul --reporter spec test",
"preversion": "npm test",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags && rm -rf build/temp"
},
"keywords": [
"RingCentral",
"SMS",
"hubot",
"adapter"
],
"main": "./ringcentralSMS",
"engines": {
"node": ">=4.6.x",
"npm": ">=3.10.x"
},
"dependencies": {
"fast_bindall": "0.0.1",
"lodash": "^4.16.4",
"parent-require": "^1.0.0",
"ringcentral": "^3.0.0-rc1"
},
"peerDependencies": {
"hubot": ">=2.19.0"
},
"devDependencies": {
"chai": "^3.5.0",
"coffee-coverage": "^1.0.1",
"coffee-script": ">=1.2.0",
"coffeelint": "^1.15.7",
"coveralls": "^2.11.14",
"dotenv": "^2.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.0",
"should": "^11.1.0",
"sinon": "^1.17.6"
},
"repository": {
"type": "git",
"url": "https://github.com/bdeanindy/hubot-ringcentral-sms.git"
},
"author": {
"name": "Benjamin Dean",
"email": "[email protected]"
},
"contributors": [
{
"name": "Colin Liu",
"email": "[email protected]",
"url": "https://github.com/bdeanindy"
}
],
"license": "MIT"
"bugs": {
"url": "https://github.com/bdeanindy/hubot-ringcentral-sms/issues"
},
"homepage": "https://github.com/bdeanindy/hubot-ringcentral-sms"
}