-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 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
{
"name": "persona_client",
"version": "4.1.6",
"private": true,
"main": "./index.js",
"description": "Node Client for Persona, repsonsible for retrieving, generating, caching and validating OAuth Tokens.",
"homepage": "http://www.talis.com",
"bugs": "https://github.com/talis/persona-node-client/issues",
"author": {
"name": "Nadeem Shabir",
"email": "[email protected]",
"url": "http://www.talis.com"
},
"repository": {
"type": "git",
"url": "https://github.com/talis/persona-node-client"
},
"licenses": [
{
"type": "MIT"
}
],
"scripts": {
"coverage": "nyc npm run test",
"coverage-html": "nyc --reporter=html npm run test",
"test": "./node_modules/.bin/mocha --exit --timeout 20000 test/**/*.js",
"integration-test": "./node_modules/.bin/mocha --exit --timeout 20000 test/integration/**/*.js",
"unit-test": "./node_modules/.bin/mocha --exit --timeout 20000 test/unit/**/*.js",
"lint": "./node_modules/.bin/jshint index.js",
"lint-fix": "./node_modules/.bin/js-beautify -r index.js"
},
"devDependencies": {
"debug": "2.6.8",
"js-beautify": "^1.8.9",
"jshint": "^2.10.1",
"leche": "2.2.3",
"mocha": "5.2.0",
"nock": "7.2.2",
"nyc": "^13.1.0",
"proxyquire": "^2.1.0",
"should": "3.3.2",
"sinon": "3.0.0"
},
"dependencies": {
"cache-service": "1.3.5",
"cache-service-node-cache": "1.1.1",
"cache-service-redis": "2.0.0",
"crypto-js": "3.1.2-2",
"jsonwebtoken": "5.7.0",
"lodash": "3.10.1",
"uuid": "2.0.2"
}
}