-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.35 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
{
"name": "envoy-platform-sdk",
"version": "1.1.0",
"description": "The Official Envoy:Platform SDK for NodeJS. Use for creating plugins.",
"main": "index.js",
"private": true,
"scripts": {
"test": "standard && nyc mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/envoy/envoy-platform-sdk-nodejs.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/envoy/envoy-platform-sdk-nodejs/issues"
},
"homepage": "https://github.com/envoy/envoy-platform-sdk-nodejs#readme",
"bin": {
"invoke": "./bin/invoke"
},
"dependencies": {
"@bugsnag/js": "^5.2.0",
"debug": "^3.1.0",
"libphonenumber-js": "^1.10.28",
"lodash.get": "^4.4.2",
"nodemailer": "^6.6.1",
"nodemailer-sendgrid": "^1.0.3",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"simple-oauth2": "^1.6.0",
"standard": "^11.0.1",
"twilio": "^4.10.0",
"urijs": "^1.19.11"
},
"devDependencies": {
"chai": "^4.1.2",
"dirty-chai": "^2.0.1",
"mocha": "^10.2.0",
"nock": "^9.3.2",
"nyc": "^15.1.0",
"proxyquire": "^2.0.1",
"sinon": "^5.1.1",
"sinon-chai": "^3.1.0"
},
"standard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
]
}
}