-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
78 lines (78 loc) · 1.83 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
{
"name": "ibmcloud-appid-js",
"version": "1.0.2",
"description": "IBM Cloud App ID SDK for Single Page Applications",
"keywords": [
"SPA",
"SDK",
"angular",
"react",
"javascript",
"js",
"ibmcloud",
"appid",
"App ID",
"authentication",
"authorization",
"access control",
"ACL",
"openid",
"jwt",
"PKCE",
"oauth",
"single page application"
],
"scripts": {
"build": "webpack",
"test": "mocha",
"coverage": "nyc --reporter=lcov mocha",
"commit": "git-cz",
"semantic-release": "semantic-release",
"acp": "npm install && npm run docs && npm run build && git add . && npm run commit",
"docs": "jsdoc src/index.js src/errors -t node_modules/docdash --readme README.md --destination docs -c jsdoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ibm-cloud-security/appid-clientsdk-js.git"
},
"main": "dist/appid.umd.min.js",
"license": "Apache-2.0",
"nyc": {
"all": true,
"include": [
"src/*.js"
],
"exclude": [
"**/PopupController.js",
"**/IFrameController.js",
"**/OpenIDConfigurationResource.js",
"**/constants.js"
]
},
"dependencies": {
"jsrsasign": "^11.1.0"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^3.3.0",
"docdash": "^1.2.0",
"gulp-babel": "^8.0.0",
"jsdoc": "^3.6.4",
"mocha": "^7.2.0",
"node-fetch": "^2.7.0",
"nyc": "^15.1.0",
"semantic-release": "^18.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}