forked from mojaloop/auth-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.55 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
{
"name": "@mojaloop/central-services-auth",
"version": "11.0.0",
"description": "Authentication module for central services",
"main": "src/index.js",
"scripts": {
"pretest": "standard",
"test": "npm run test:unit | faucet",
"test:unit": "tape 'test/**/*.test.js'",
"test:xunit": "npm run test:unit | tap-xunit",
"test:coverage": "istanbul cover tape -- 'test/**/*.test.js'",
"test:coverage-check": "npm run test:coverage && istanbul check-coverage",
"audit:resolve": "SHELL=sh resolve-audit --production",
"audit:check": "SHELL=sh check-audit --production",
"dep:check": "npx ncu -e 2",
"dep:update": "npx ncu -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mojaloop/central-services-auth.git"
},
"keywords": [
"authentication",
"authorization",
"central",
"services"
],
"author": "Dwolla",
"contributors": [
"Georgi Georgiev <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mojaloop/central-services-auth/issues"
},
"homepage": "https://github.com/mojaloop/central-services-auth#readme",
"dependencies": {
"@mojaloop/central-services-shared": "5.2.0"
},
"devDependencies": {
"faucet": "0.0.1",
"istanbul": "1.1.0-alpha.1",
"npm-audit-resolver": "2.2.0",
"npm-check-updates": "6.0.1",
"pre-commit": "1.2.2",
"sinon": "8.1.1",
"standard": "14.3.4",
"tap-xunit": "2.4.1",
"tape": "5.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}