-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "alexa-verifier-middleware",
"version": "2.1.0",
"description": "An expressjs middleware that verifies HTTP requests sent to an Alexa skill are sent from Amazon.",
"type": "module",
"types": "index.d.ts",
"main": "index.js",
"scripts": {
"test": "tap ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexa-js/alexa-verifier-middleware.git"
},
"keywords": [
"alexa",
"alexa-verifier",
"alexa-verifier-middleware"
],
"author": "tejashah88",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexa-js/alexa-verifier-middleware/issues"
},
"homepage": "https://github.com/alexa-js/alexa-verifier-middleware#readme",
"dependencies": {
"alexa-verifier": "^4.0.0"
},
"devDependencies": {
"body-parser": "^1.20.2",
"express": "^4.18.2",
"nock": "^13.4.0",
"node-forge": "^1.3.1",
"node-mocks-http": "^1.14.1",
"sinon": "^13.0.2",
"supertest": "^6.3.3",
"tap": "^16.3.10"
},
"engines": {
"node": ">=12.17"
}
}