-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
46 lines (46 loc) · 1.66 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
{
"name": "asgardeo-auth-spa-sdk",
"description": "Asgardeo Auth SPA SDK and Sample Apps",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "lerna run build --stream",
"prebuild": "yarn bootstrap",
"bootstrap": "yarn install && lerna bootstrap",
"remove-node-modules": "npx lerna exec -- rimraf -rf node_modules && rimraf -rf node_modules",
"remove-package-lock": "npx lerna exec -- rimraf -rf yarn.lock && rimraf -rf yarn.lock",
"lint": "lerna run lint",
"fix-lint": "lerna run fix-lint",
"clean": "lerna run clean --stream",
"clean-all": "yarn remove-package-lock && yarn remove-node-modules",
"bump-patch-version": "lerna version patch --yes",
"bump-minor-version": "lerna version minor --yes",
"bump-major-version": "lerna version major --yes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asgardeo/asgardeo-auth-spa-sdk.git"
},
"keywords": [
"Asgardeo",
"OIDC",
"OAuth2",
"Authentication",
"Authorization"
],
"author": "Asgardeo",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/asgardeo/asgardeo-auth-spa-sdk/issues"
},
"homepage": "https://github.com/asgardeo/asgardeo-auth-spa-sdk#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-plugin-import": "^2.25.4",
"lerna": "^4.0.0",
"rimraf": "^3.0.2",
"typescript": "~4.5.5"
}
}