This repository was archived by the owner on Jan 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.44 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.44 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "aurelia-kis-oidc",
"version": "1.9.1",
"description": "An Aurelia plugin that encapsulates oidc-client-js library.",
"keywords": [
"aurelia",
"plugin",
"openid",
"oidc",
"oauth2",
"aad",
"azuread",
"b2c"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kisssdev/aurelia-kis-oidc.git"
},
"license": "MIT",
"author": "KisssDev",
"main": "dist/commonjs/index.js",
"module": "dist/native-modules/index.js",
"types": "src/index.d.ts",
"files": [
"dist",
"src/index.d.ts"
],
"scripts": {
"build": "au build-plugin",
"doc": "jsdoc -c ./.jsdoc.json",
"lint": "au lint",
"prepare": "npm run build",
"release": "release-it",
"pretest": "au lint",
"test": "au test",
"upgrade": "npm-upgrade",
"preversion": "au test"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"!**/*.spec.js",
"!**/node_modules/**",
"!**/test/**"
],
"coverageDirectory": "<rootDir>/test/coverage-jest",
"coverageReporters": [
"json",
"lcov",
"text",
"html"
],
"moduleFileExtensions": [
"js",
"json"
],
"moduleNameMapper": {
"^aurelia-binding$": "<rootDir>/node_modules/aurelia-binding"
},
"modulePaths": [
"<rootDir>/src",
"<rootDir>/node_modules"
],
"setupFiles": [
"<rootDir>/test/jest-pretest.js"
],
"testEnvironment": "node",
"testRegex": "\\.spec\\.js$",
"transform": {
"^.+\\.(css|less|sass|scss|styl|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "jest-transform-stub",
"^.+\\.js$": "babel-jest"
}
},
"dependencies": {
"oidc-client": "^1.11.5"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.3",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.23.3",
"@babel/register": "^7.22.15",
"aurelia-animator-css": "^1.0.4",
"aurelia-bootstrapper": "^2.4.0",
"aurelia-cli": "^3.0.2",
"aurelia-loader-nodejs": "^1.1.0",
"aurelia-pal-nodejs": "^2.0.0",
"aurelia-testing": "^1.1.0",
"aurelia-tools": "^2.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"connect-history-api-fallback": "^2.0.0",
"core-js": "^3.33.3",
"debounce": "^1.2.1",
"del": "^6.1.1",
"eslint": "^7.32.0",
"eslint-plugin-array-func": "^3.1.8",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-promise": "^6.1.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-cache": "^1.1.3",
"gulp-eslint": "^6.0.0",
"gulp-notify": "^4.0.0",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"gulp-watch": "^5.0.1",
"jest": "^27.5.1",
"jest-transform-stub": "^2.0.0",
"jsdoc": "^3.6.11",
"jsdoc-escape-at": "^1.0.1",
"kis-jsdoc-plugin": "^1.4.13",
"minimatch": "^3.1.2",
"npm-upgrade": "^3.1.0",
"prettier": "^3.1.0",
"prettier-eslint": "^16.1.2",
"regenerator-runtime": "0.14.0",
"release-it": "^17.0.0",
"requirejs": "^2.3.6",
"text": "github:requirejs/text#latest",
"through2": "^4.0.2",
"vinyl-fs": "^3.0.3"
},
"engines": {
"node": ">=8.9.0"
}
}