forked from twilio/twilio-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.85 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
70
71
72
{
"name": "twilio",
"description": "A Twilio helper library",
"version": "3.50.0",
"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.7",
"@types/qs": "6.9.4",
"axios": "^0.19.2",
"dayjs": "^1.8.29",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.19",
"q": "2.0.x",
"qs": "^6.9.4",
"rootpath": "^0.1.2",
"scmp": "^2.1.0",
"url-parse": "^1.4.7",
"xmlbuilder": "^13.0.2"
},
"devDependencies": {
"@types/lodash": "4.14.112",
"@types/node": "9.6.57",
"eslint": "^7.3.1",
"express": "^4.17.1",
"jasmine": "~3.5.0",
"jsdoc": "^3.6.4",
"jshint": "^2.11.0",
"mock-fs": "^4.12.0",
"nock": "^10.0.6",
"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"
}