forked from ibm-cloud-security/appid-serversdk-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.4 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
{
"name": "ibmcloud-appid",
"version": "5.0.0",
"description": "Node.js SDK for the IBM Cloud App ID service",
"main": "lib/appid-sdk.js",
"scripts": {
"apiapp": "node samples/api-app-sample-server.js",
"webapp": "node samples/web-app-sample-server.js",
"test": "./node_modules/.bin/_mocha",
"coverage": "./node_modules/.bin/istanbul cover -i \"lib/**/*.js\" ./node_modules/.bin/_mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ibm-cloud-security/appid-serversdk-nodejs.git"
},
"author": "Anton Aleksandrov",
"license": "Apache-2.0",
"devDependencies": {
"base64url": "^3.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.2",
"eslint": "^5.11.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"express": "^4.14.0",
"express-session": "^1.15.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"passport": "^0.4.0",
"proxyquire": "^2.1.0",
"rewire": "^4.0.1"
},
"dependencies": {
"accept-language": "^3.0.18",
"body-parser": "^1.17.2",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"ejs": "^2.5.6",
"helmet": "^3.11.0",
"jsonwebtoken": "^7.2.1",
"log4js": "^1.1.0",
"q": "^1.4.1",
"request": "2.81.0",
"rsa-pem-from-mod-exp": "^0.8.4",
"underscore": "^1.8.3"
}
}