-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.19 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@ilionx/oauth-client-core",
"version": "1.3.1",
"private": false,
"description": "OAuth client for implicit and code flow with PKCE",
"author": "ilionx",
"email": "[email protected]",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/Q24/oauth-client-core",
"repository": {
"type": "git",
"url": "git+https://github.com/Q24/oauth-client-core.git"
},
"bugs": {
"url": "https://github.com/Q24/oauth-client-core/issues"
},
"keywords": [
"oidc",
"openid",
"oauth",
"oauth2",
"implicit",
"code flow"
],
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.6",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"jest": "^27.0.6",
"jsrsasign-reduced": "^8.0.15",
"microbundle": "^0.13.3",
"prettier": "^2.3.2",
"semantic-release": "^19.0.5",
"ts-jest": "^27.0.3",
"typedoc": "^0.21.2",
"typedoc-plugin-markdown": "^3.10.2",
"typescript": "^4.3.4"
},
"scripts": {
"prepublishOnly": "npm run build",
"copyCleanHashFragment": "cp ./clean-hash-fragment.js dist/clean-hash-fragment.js",
"build": "npm run bundle && npm run copyCleanHashFragment && npm run typedoc",
"bundle": "rm -rf dist && microbundle --name OAuthClientCore --external none",
"dev": "microbundle watch --name OAuthClientCore --external none",
"dev:2": "microbundle watch --name OAuthClientCore --external none -o /Users/meesvandongen/conformance-suite/src/main/resources/static/oidc-test-client/dist",
"typedoc": "rm -rf docs && typedoc ./src/index.ts",
"lint": "prettier ./src/**/*.ts --write",
"test": "npx jest --watch"
},
"source": "./src/index.ts",
"main": "dist/index.js",
"exports": "./dist/index.modern.js",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"typings": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
}
}