-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.23 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.23 KB
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
{
"name": "twilio-gatekeeper",
"version": "0.1.1",
"description": "Twilio Gatekeeper is an automated access control system (ACS) for gated communities and apartment buildings.",
"main": "src/handler.js",
"scripts": {
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"deploy": "serverless deploy -v",
"lint": "eslint .",
"precommit": "npm run lint && npm run test:unit",
"test": "mocha test/ --recursive",
"test:e2e": "mocha test/e2e/ --recursive",
"test:unit": "nyc mocha test/unit/ --recursive && nyc report --reporter=lcov"
},
"author": "Jonathan Foster <jonathan.e.foster@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jonathanfoster/twilio-gatekeeper.git"
},
"dependencies": {
"lodash": "^4.17.19",
"npm": "^7.12.0",
"twilio": "^3.47.0"
},
"devDependencies": {
"axios": "^0.21.1",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.3.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"serverless": "^2.40.0",
"serverless-domain-manager": "^4.1.1",
"xml2js": "^0.4.23"
}
}