forked from VilledeMontreal/authentication-nodejs-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 2.05 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.0.0",
"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 bootstrap && npm run compile",
"prepublishOnly": "./node_modules/.bin/lerna run compile --no-private",
"pre-commit": "./node_modules/.bin/lerna run pre-commit",
"pre-push": "./node_modules/.bin/lerna run pre-push --concurrency 1",
"clean": "./node_modules/.bin/lerna clean && ./node_modules/.bin/lerna run clean",
"compile": "./node_modules/.bin/lerna run compile",
"lint": "./node_modules/.bin/lerna run lint",
"lint-fix": "./node_modules/.bin/lerna run lint-fix",
"test": "./node_modules/.bin/lerna run test --concurrency 1",
"test-ci": "./node_modules/.bin/lerna run test-ci --concurrency 1",
"publish:dev": "./node_modules/.bin/lerna publish --canary --preid beta --dist-tag beta --force-publish --yes",
"publish:master": "./node_modules/.bin/lerna publish from-git --yes",
"bootstrap": "./node_modules/.bin/lerna bootstrap",
"bump": "./node_modules/.bin/lerna version patch",
"bump:force": "./node_modules/.bin/lerna version patch --force-publish",
"bump:release": "./node_modules/.bin/lerna version --force-publish --conventional-commits --create-release github",
"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"
},
"devDependencies": {
"@commitlint/cli": "17.0.2",
"@commitlint/config-conventional": "17.0.2",
"husky": "8.0.1",
"lerna": "^5.1.4"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run pre-commit",
"pre-push": "npm run pre-push"
}
}
}