generated from VilledeMontreal/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.77 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
43
44
45
46
47
48
49
50
51
{
"name": "@villedemontreal/authentication-nodejs-lib",
"version": "1.1.2",
"private": true,
"author": "Montreal City Authors",
"license": "MIT",
"description": "An OIDC lib for backend to backend communication",
"keywords": [
"authentication",
"oauth2",
"oidc",
"openid connect"
],
"repository": {
"type": "git",
"url": "git+https://github.com/VilledeMontreal/authentication-nodejs-lib.git"
},
"scripts": {
"postinstall": "npm run compile",
"prepublishOnly": "npx nx run-many -t compile",
"pre-commit": "npx nx run-many -t pre-commit",
"pre-push": "npx nx run-many -t pre-push --parallel=false",
"clean": "./node_modules/.bin/lerna clean && ./node_modules/.bin/lerna run clean",
"compile": "npx nx run-many -t compile",
"lint": "npx nx run-many -t run lint",
"lint-fix": "npx nx run-many -t lint-fix",
"test": "npx nx run-many -t test --parallel=false",
"test-ci": "./node_modules/.bin/lerna run test-ci --parallel=false",
"publish:dev": "./node_modules/.bin/lerna publish --canary --preid beta --dist-tag beta --force-publish --yes",
"publish:master": "./node_modules/.bin/lerna publish from-package --yes",
"bump": "node scripts/bump-version.js",
"ncu": "ncu && ./node_modules/.bin/lerna exec -- ncu -x @types/node",
"ncu-fix": "ncu -u && ./node_modules/.bin/lerna exec -- ncu -u -x @types/node"
},
"workspaces": [
"packages/core",
"packages/oidc",
"packages/oidc-plugin-axios",
"packages/oidc-plugin-request",
"packages/oidc-plugin-superagent",
"examples/client-axios",
"examples/client-internal",
"examples/client-request",
"examples/client-superagent",
"examples/server-api",
"examples/server-oidc"
],
"devDependencies": {
"lerna": "^8.1.8"
}
}