-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.44 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
{
"name": "paale-dai",
"version": "0.1.1",
"description": "",
"scripts": {
"serve": "env $(cat demo/.env | grep -v ^# | xargs) node demo/server.js",
"nodemon": "nodemon --exec 'npm run serve' --watch demo",
"test": "mocha tests/unit tests/api",
"lint": "eslint ./ demo/",
"test-ci": "npm run lint && istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec tests/unit tests/api",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot tests/unit tests/api"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IntroCept/paale-dai.git"
},
"keywords": ["authentication", "SSO", "middleware", "express-middleware", "Single sign-on"],
"author": {
"name" : "Ujjwal Ojha",
"email" : "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/IntroCept/paale-dai/issues"
},
"homepage": "https://github.com/IntroCept/paale-dai",
"dependencies": {
"append-query": "^2.0.0",
"base64-url": "^1.3.2",
"denodeify": "^1.2.1",
"express": "^4.14.0",
"googleapis": "^14.0.0",
"jsonwebtoken": "^7.1.9",
"supertest": "^2.0.0"
},
"devDependencies": {
"cookies": "^0.6.2",
"eslint": "^3.8.1",
"eslint-config-airbnb-base": "^9.0.0",
"eslint-plugin-import": "^2.0.1",
"istanbul": "^0.4.5",
"lodash": "^4.16.4",
"mocha": "^3.1.2",
"proxyquire": "^1.7.10",
"should": "^11.1.1"
}
}