-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.45 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
{
"name": "inha-portal-sso-client",
"version": "0.1.3",
"description": "Inha Univ. Portal Single Sign-On Client",
"keywords": [
"inha-university",
"single-sign-on",
"exsignon",
"client-library",
"typescript"
],
"homepage": "https://github.com/incalc/inha-portal-sso-client#readme",
"bugs": {
"url": "https://github.com/incalc/inha-portal-sso-client/issues"
},
"license": "MIT",
"author": "Seungjae Park <[email protected]>",
"main": "dist/lib.cjs",
"module": "dist/lib.esm.js",
"browser": "dist/lib.umd.js",
"types": "dist/src/index.d.ts",
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/incalc/inha-portal-sso-client.git"
},
"scripts": {
"build": "rollup -c",
"docs": "typedoc src --out docs --theme minimal",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --ext .js,.ts --fix",
"prepublishOnly": "npm run build"
},
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.28.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.4",
"rollup": "^2.51.2",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.3.0",
"typedoc": "^0.20.37",
"typescript": "^4.2.4"
},
"engines": {
"node": ">=12.0.0"
}
}