-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.33 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
{
"name": "arc-macro-oauth",
"version": "1.0.2",
"description": "",
"author": "Thomas Pedersen <[email protected]>",
"license": "MIT",
"main": "src/macros/arc-macro-oauth.js",
"scripts": {
"lint": "xo --fix",
"build-auth": "ncc build src/handlers/auth-handler-deps.js --out dist/auth-handler/auth-handler-deps --external aws-sdk && cp src/handlers/auth-handler.js dist/auth-handler/index.js",
"build-login": "ncc build src/handlers/login-handler-deps.js --out dist/login-handler/login-handler-deps --external aws-sdk && cp src/handlers/login-handler.js dist/login-handler/index.js",
"copy": "mkdir -p ./node_modules/arc-macro-oauth/dist && cp -r ./dist/* ./node_modules/arc-macro-oauth/dist",
"build": "npm run build-auth && npm run build-login && npm run copy",
"deploy": "npm run build && npx arc deploy"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/thedersen/arc-macro-oauth.git"
},
"xo": {
"prettier": true,
"space": 2
},
"prettier": {
"trailingComma": "es5"
},
"dependencies": {
"@architect/functions": "^3.12.1",
"fs-extra": "^9.0.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.7.0",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@architect/architect": "^6.6.0-RC.0",
"@zeit/ncc": "^0.22.3",
"xo": "^0.32.1"
}
}