-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 947 Bytes
/
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
{
"name": "aws-api-auth-policy",
"version": "1.0.1",
"description": "Typescript implementation of AWS API Gateway Lambda Authorizer policy creator",
"main": "dist/auth-policy",
"typings": "dist/auth-policy",
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "npm run clean && tsc -p .",
"watch": "tsc -w -p .",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chesterm8/aws-api-auth-policy.git"
},
"keywords": [
"aws",
"api",
"typescript"
],
"devDependencies": {
"@types/node": "12.6.9",
"typescript": "3.5.3"
},
"files": [
"dist/auth-policy.js",
"dist/auth-policy.d.ts"
],
"author": "Stephen Bellchester <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chesterm8/aws-api-auth-policy/issues"
},
"homepage": "https://github.com/chesterm8/aws-api-auth-policy#readme"
}