-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.8 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
{
"name": "@crossid/crossid-spa-js",
"version": "0.4.8",
"description": "Crossid is an OAuth2 / OIDC client for single page application (SPA) with support for PKCE extension.",
"main": "dist/crossid-spa-js.js",
"types": "dist/types/index.d.ts",
"module": "dist/index.js",
"files": [
"dist/**/*.{js,ts,map}"
],
"scripts": {
"start": "concurrently \"npm run dev\" \"npm run dev:server\"",
"build": "rollup -m -c --environment NODE_ENV:production",
"dev:server": "web-dev-server --open playground/ --app-index playground/index.html --node-resolve --watch",
"dev": "rimraf dist && rollup -c --watch",
"test": "jest --coverage --silent",
"test:watch": "jest --coverage --silent --watch",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"docs": "typedoc --out docs src/index.ts"
},
"author": "Crossid",
"keywords": [
"crossid",
"signin",
"login",
"openid",
"OIDC",
"OAuth2",
"PKCE"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/crossid/crossid-spa-js.git"
},
"bugs": {
"url": "https://github.com/crossid/crossid-spa-js/issues"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@types/jest": "^29.4.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.15.3",
"@types/pem": "^1.9.6",
"@web/dev-server": "^0.1.35",
"concurrently": "^7.6.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"jsonwebtoken": "^9.0.0",
"prettier": "^2.8.4",
"rollup": "^2.79.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.5",
"typedoc": "^0.23.26",
"typescript": "^4.9.5"
}
}