-
Notifications
You must be signed in to change notification settings - Fork 510
/
package.json
77 lines (77 loc) · 2.08 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
73
74
75
76
77
{
"name": "twilio",
"description": "A Twilio helper library",
"version": "5.3.5",
"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": {
"axios": "^1.7.4",
"dayjs": "^1.11.9",
"https-proxy-agent": "^5.0.0",
"jsonwebtoken": "^9.0.2",
"qs": "^6.9.4",
"scmp": "^2.1.0",
"xmlbuilder": "^13.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.23.0",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.5.5",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^18.11.18",
"@types/qs": "^6.9.7",
"babel-plugin-replace-ts-export-assignment": "^0.0.2",
"eslint": "^8.31.0",
"express": "^4.17.1",
"jest": "^29.5.5",
"jshint": "^2.11.0",
"mock-fs": "^5.2.0",
"nock": "^13.2.9",
"node-mocks-http": "^1.8.1",
"prettier": "^2.7.1",
"ts-jest": "^29.1.1",
"typescript": "^4.7.2",
"typedoc": "^0.23.21"
},
"scripts": {
"test": "npm run test:javascript && npm run test:typescript",
"test:javascript": "jest spec --coverage --detectOpenHandles --testPathIgnorePatterns=spec/cluster",
"test:typescript": "tsc --noEmit",
"jshint": "jshint src/rest/** src/base/** src/http/**",
"jscs": "eslint src/base/**/**.js src/http/**/**.js --fix",
"prepublish": "npm run build",
"build": "tsc",
"check": "npm run jshint && npm run jscs",
"ci": "npm run test && npm run nsp && npm run prettier-check",
"nsp": "npm audit --production",
"prettier": "prettier --write .",
"prettier-check": "prettier --check .",
"typedoc": "typedoc --entryPointStrategy expand src --out docs --logLevel Error"
},
"files": [
"lib",
"index.js",
"index.d.ts"
],
"main": "./lib",
"types": "./index.d.ts",
"engines": {
"node": ">=14.0"
},
"license": "MIT"
}