-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.21 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
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
{
"name": "ember-simple-auth-okta",
"version": "1.0.0",
"description": "Ember Simple Auth implementation wrapping `okta-auth-js`.",
"keywords": [
"ember-addon",
"ember-simple-auth",
"jwt",
"auth",
"authentication",
"authorization",
"okta",
"oauth2",
"oidc",
"okta-auth-js"
],
"repository": {
"type": "git",
"url": "https://github.com/cybertooth-io/ember-simple-auth-okta"
},
"license": "MIT",
"author": {
"name": "cybertooth.io",
"email": "[email protected]",
"url": "http://cybertooth.io"
},
"contributors": [
{
"name": "Brad Fontaine",
"email": "[email protected]",
"url": "https://bradf83.github.io/"
},
{
"name": "Dan Nelson",
"email": "[email protected]",
"url": "https://nadnoslen.github.io/"
}
],
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"build": "ember build",
"lint:hbs": "ember-template-lint .",
"lint:js": "eslint .",
"start": "ember serve",
"test": "ember test",
"test:all": "ember try:each"
},
"dependencies": {
"@okta/okta-auth-js": "2.13.0",
"ember-auto-import": "^1.5.3",
"ember-cli-babel": "^7.13.0",
"ember-cli-htmlbars": "^4.2.0"
},
"devDependencies": {
"@ember/optional-features": "^1.1.0",
"@glimmer/component": "^1.0.0",
"babel-eslint": "^10.0.3",
"broccoli-asset-rev": "^3.0.0",
"codeclimate-test-reporter": "^0.5.1",
"ember-cli": "~3.15.2",
"ember-cli-addon-docs": "0.6.16",
"ember-cli-addon-docs-esdoc": "^0.2.1",
"ember-cli-code-coverage": "^1.0.0-beta.8",
"ember-cli-dependency-checker": "^3.2.0",
"ember-cli-deploy": "^1.0.2",
"ember-cli-deploy-build": "^2.0.0",
"ember-cli-deploy-git": "^1.3.3",
"ember-cli-deploy-git-ci": "^1.0.1",
"ember-cli-eslint": "^5.1.0",
"ember-cli-htmlbars-inline-precompile": "^3.0.0",
"ember-cli-inject-live-reload": "^2.0.1",
"ember-cli-sri": "^2.1.1",
"ember-cli-template-lint": "^2.0.0",
"ember-cli-uglify": "^3.0.0",
"ember-concurrency": "^1.0.0",
"ember-decorators-polyfill": "^1.0.4",
"ember-disable-prototype-extensions": "^1.1.3",
"ember-export-application-global": "^2.0.1",
"ember-load-initializers": "^2.1.1",
"ember-maybe-import-regenerator": "^0.1.6",
"ember-qunit": "^4.6.0",
"ember-resolver": "^7.0.0",
"ember-root-url": "^0.2.0",
"ember-simple-auth": "^2.1.0",
"ember-sinon": "^4.0.0",
"ember-source": "~3.15.0",
"ember-source-channel-url": "^2.0.1",
"ember-try": "^1.4.0",
"eslint-plugin-ember": "^7.7.1",
"eslint-plugin-ember-suave": "^2.0.0",
"eslint-plugin-node": "^11.0.0",
"husky": "^4.2.0",
"lint-staged": "^10.0.2",
"loader.js": "^4.7.0",
"prettier": "^1.18.2",
"qunit-dom": "^1.0.0"
},
"engines": {
"node": "8.* || >= 10.*"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"configPath": "tests/dummy/config",
"demoURL": "https://cybertooth-io.github.io/ember-simple-auth-okta/"
},
"homepage": "https://cybertooth-io.github.io/ember-simple-auth-okta",
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
}
}