forked from okta/okta-oidc-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 920 Bytes
/
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
{
"name": "@okta/configuration-validation",
"version": "0.3.0",
"description": "Configuration validation support for Okta JavaScript SDKs",
"main": "./dist/lib.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "babel src -d dist",
"lint": "eslint .",
"prepare": "yarn build",
"test": "yarn lint && yarn test:unit",
"test:unit": "jest test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okta/okta-oidc-js.git"
},
"keywords": [
"okta",
"oidc",
"OpenID Connect",
"authentication",
"auth",
"oauth2"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/okta/okta-oidc-js/issues"
},
"homepage": "https://github.com/okta/okta-oidc-js#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"eslint": "^4.7.1",
"jest": "^23.6.0"
},
"jest": {
"testEnvironment": "jsdom"
}
}