forked from hormesiel/vercel-basic-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (28 loc) · 1.09 KB
/
package.json
File metadata and controls
32 lines (28 loc) · 1.09 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
{
"name": "now-basic-auth",
"repository": "git@github.com:flawyte/now-basic-auth.git",
"author": "Mickaël Allonneau <mickael.allonneau@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"install": "yarn install:node && yarn install:node-express && yarn install:node-static-auth",
"install:node": "cd node/ && yarn",
"install:node-express": "cd node-express/ && yarn",
"install:node-static-auth": "cd node-static-auth/ && yarn",
"node": "cd node/ && now dev",
"deploy-node": "cd node && now",
"node-express": "cd node-express/ && now dev",
"deploy-node-express": "cd node-express && now",
"node-static-auth": "cd node-static-auth/ && now dev",
"deploy-node-static-auth": "cd node-static-auth && now",
"test": "TEST_VARIANT=no-credentials jest && TEST_VARIANT=invalid-credentials jest && TEST_VARIANT=valid-credentials jest",
"update-static-dirs": "bash update-static-dirs.sh"
},
"devDependencies": {
"@types/jest": "^25.2.2",
"jest": "^25.5.4",
"node-fetch": "^2.6.0",
"ts-jest": "^25.5.1",
"typescript": "^3.9.2"
}
}