forked from twilio/twilio-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.79 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
67
68
69
{
"name": "twilio",
"description": "A Twilio helper library",
"version": "3.39.4",
"author": "API Team <[email protected]>",
"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": {
"@types/express": "^4.17.2",
"dayjs": "^1.8.20",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"q": "2.0.x",
"request": "^2.88.0",
"rootpath": "^0.1.2",
"scmp": "^2.1.0",
"url-parse": "^1.4.7",
"xmlbuilder": "^13.0.2"
},
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/node": "^9.6.55",
"eslint": "^5.16.0",
"express": "^4.17.1",
"jasmine": "^3.5.0",
"jsdoc": "^3.6.3",
"jshint": "^2.11.0",
"mock-fs": "^4.10.4",
"node-mocks-http": "^1.8.1",
"proxyquire": "^2.1.3",
"typescript": "^2.8.3"
},
"scripts": {
"test": "npm run test:javascript && npm run test:typescript",
"test:javascript": "jasmine spec/**/**.spec.js",
"test:typescript": "tsc examples/typescript/example.ts --noEmit --strict",
"jshint": "jshint lib/rest/** lib/base/** lib/http/**",
"jscs": "eslint lib/base/**/**.js lib/http/**/**.js --fix",
"check": "npm run jshint && npm run jscs",
"ci": "npm test && npm run nsp",
"jsdoc": "jsdoc -r lib -d docs",
"nsp": "if [ `npm --version | cut -d'.' -f1` -ge \"6\" ]; then npm audit; else echo \"npm audit is not available for npm < 6.0\"; fi"
},
"files": [
"lib",
"index.js",
"index.d.ts"
],
"main": "./lib",
"types": "./index.d.ts",
"engines": {
"node": ">=6.0"
},
"license": "MIT"
}