forked from twilio-labs/function-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "function-templates",
"version": "1.0.0",
"private": true,
"description": "A set of useful Twilio Functions.",
"scripts": {
"test": "jest",
"new-template": "node _helpers/add-template.js",
"add-dependency": "npm install $npm_config_package --no-package-lock --prefix $npm_config_template && npm install --save-dev $npm_config_package",
"env-manifest": "node _helpers/generate-env-variable-manifest",
"ci:generate-manifest": "npm run env-manifest -- --write"
},
"author": "Twilio <open-source@twilio.com>",
"license": "MIT",
"devDependencies": {
"@twilio-labs/serverless-api": "^1.1.0",
"airtable": "^0.8.1",
"common-tags": "^1.8.0",
"configure-env": "^2.0.0-0",
"copy-template-dir": "^1.4.0",
"eslint": "^5.4.0",
"husky": "^4.2.5",
"inquirer": "^7.0.4",
"jest-cli": "^24.8.0",
"listr": "^0.14.3",
"log-symbols": "^3.0.0",
"moment": "^2.24.0",
"stripe": "^8.20.0",
"twilio": "^3.43.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"testPathIgnorePatterns": [
"/_helpers/",
"/node_modules/"
]
},
"dependencies": {
"got": "^6.7.1"
}
}