-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "service2service",
"version": "2.2.0",
"description": "A node module to make service to service communication secure and easy",
"main": "index.js",
"scripts": {
"check-cov": "istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100",
"lint": "eslint . --ignore-path=.gitignore",
"pretest": "npm run lint",
"test": "npm run test:unit",
"test:unit": "istanbul cover _mocha",
"posttest": "npm run check-cov"
},
"files": [
"lib",
"express.js",
"index.js",
"koa.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/KualiCo/service2service.git"
},
"engines": {
"node": ">=4.x"
},
"keywords": [
"auth",
"service",
"jsonwebtoken",
"jwt",
"secret"
],
"author": "ksmithut",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/KualiCo/service2service/issues"
},
"homepage": "https://github.com/KualiCo/service2service#readme",
"dependencies": {
"bluebird": "^3.5.0",
"jsonwebtoken": "^8.4.0",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"uuid": "^3.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^3.17.1",
"eslint-plugin-mocha": "^4.8.0",
"express": "^4.15.2",
"istanbul": "^0.4.5",
"koa": "^2.2.0",
"koa-onerror": "^3.1.0",
"mocha": "^3.5.3",
"nock": "^9.0.9",
"supertest": "^3.0.0"
}
}