forked from twilio/twilio-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.31 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": "twilio",
"description": "A Twilio helper library",
"version": "3.11.0",
"author": "API Team <api@twilio.com>",
"contributors": [
{
"name": "twilio-node contributors",
"url": "https://github.com/twilio/twilio-node/graphs/contributors"
}
],
"keywords": [
"twilio",
"sms",
"rest",
"api"
],
"repository": {
"type": "git",
"url": "https://github.com/twilio/twilio-node.git"
},
"dependencies": {
"jsonwebtoken": "^8.1.0",
"lodash": "4.0.0",
"moment": "2.18.1",
"q": "2.0.x",
"request": "2.83.x",
"rootpath": "0.1.2",
"scmp": "0.0.3",
"xmlbuilder": "9.0.1",
"deprecate": "1.0.0"
},
"devDependencies": {
"express": "3.x",
"jasmine-node": "1.14.5",
"jscs": "3.0.7",
"jsdoc": "3.5.5",
"jshint": "2.8.x",
"nsp": "2.8.0",
"proxyquire": "1.8.0"
},
"scripts": {
"test": "jasmine-node --captureExceptions spec",
"jshint": "jshint lib/rest/** lib/base/** lib/http/**",
"jscs": "jscs -c .jscsrc lib/base/** lib/http/** --fix",
"check": "npm run jshint; npm run jscs",
"ci": "npm test; npm run nsp",
"jsdoc": "jsdoc -r lib -d docs",
"nsp": "nsp check"
},
"files": [
"lib",
"index.js"
],
"main": "./lib",
"engines": {
"node": ">=0.12.0"
},
"license": "MIT"
}