UNPKG

2.19 kBJSONView Raw
1{
2 "name": "twilio",
3 "description": "A Twilio helper library",
4 "version": "4.22.0",
5 "author": "API Team <api@twilio.com>",
6 "contributors": [
7 {
8 "name": "twilio-node contributors",
9 "url": "https://github.com/twilio/twilio-node/graphs/contributors"
10 }
11 ],
12 "keywords": [
13 "twilio",
14 "sms",
15 "rest",
16 "api"
17 ],
18 "repository": {
19 "type": "git",
20 "url": "https://github.com/twilio/twilio-node.git"
21 },
22 "dependencies": {
23 "axios": "^1.6.0",
24 "dayjs": "^1.11.9",
25 "https-proxy-agent": "^5.0.0",
26 "jsonwebtoken": "^9.0.0",
27 "qs": "^6.9.4",
28 "scmp": "^2.1.0",
29 "url-parse": "^1.5.9",
30 "xmlbuilder": "^13.0.2"
31 },
32 "devDependencies": {
33 "@babel/preset-env": "^7.23.0",
34 "@babel/preset-typescript": "^7.18.6",
35 "@types/jest": "^29.5.5",
36 "@types/jsonwebtoken": "^9.0.0",
37 "@types/node": "^18.11.18",
38 "@types/qs": "^6.9.7",
39 "@types/url-parse": "^1.4.8",
40 "babel-plugin-replace-ts-export-assignment": "^0.0.2",
41 "eslint": "^8.31.0",
42 "express": "^4.17.1",
43 "jest": "^29.5.5",
44 "jshint": "^2.11.0",
45 "mock-fs": "^5.2.0",
46 "nock": "^13.2.9",
47 "node-mocks-http": "^1.8.1",
48 "prettier": "^2.7.1",
49 "ts-jest": "^29.1.1",
50 "typescript": "^4.7.2",
51 "typedoc": "^0.23.21"
52 },
53 "scripts": {
54 "test": "npm run test:javascript && npm run test:typescript",
55 "test:javascript": "jest spec --coverage --detectOpenHandles --testPathIgnorePatterns=spec/cluster",
56 "test:typescript": "tsc --noEmit",
57 "jshint": "jshint src/rest/** src/base/** src/http/**",
58 "jscs": "eslint src/base/**/**.js src/http/**/**.js --fix",
59 "prepublish": "npm run build",
60 "build": "tsc",
61 "check": "npm run jshint && npm run jscs",
62 "ci": "npm run test && npm run nsp && npm run prettier-check",
63 "nsp": "npm audit --production",
64 "prettier": "prettier --write .",
65 "prettier-check": "prettier --check .",
66 "typedoc": "typedoc --entryPointStrategy expand src --out docs --logLevel Error"
67 },
68 "files": [
69 "lib",
70 "index.js",
71 "index.d.ts"
72 ],
73 "main": "./lib",
74 "types": "./index.d.ts",
75 "engines": {
76 "node": ">=14.0"
77 },
78 "license": "MIT"
79}