-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
49 lines (49 loc) · 1.88 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": "als-oracle-template",
"description": "",
"version": "1.0.0",
"author": "Valentin Genev <[email protected]>",
"contributors": [],
"repository": {
"type": "git",
"url": "git://github.com/mojaloop/als-oracle-template.git"
},
"bugs": "http://github.com/mojaloop/als-oracle-template/issues",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@hapi/boom": "^9.1.1",
"@hapi/good": "^9.0.1",
"@hapi/hapi": "^20.0.3",
"@hapi/inert": "^6.0.3",
"@hapi/vision": "^6.0.1",
"@mojaloop/central-services-logger": "^10.6.0",
"@mojaloop/central-services-shared": "11.5.3",
"blipp": "^4.0.2",
"hapi-swagger": "^14.1.0"
},
"devDependencies": {
"@mojaloop/api-snippets": "^11.4.1",
"eslint": "7.17.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"npm-audit-resolver": "^2.2.1",
"pre-commit": "1.2.2",
"sinon": "9.2.3",
"standard": "^16.0.3",
"swagger-cli": "^4.0.4"
},
"scripts": {
"start": "node src/index.js api",
"test": "npm run test:unit",
"test:unit": "jest --testMatch '**/test/unit/**/*.test.js'",
"test:junit": "jest --reporters=default --reporters=jest-junit --testMatch '**/test/unit/**/*.test.js'",
"test:coverage": "jest --coverage --coverageThreshold='{}' --testMatch '**/test/unit/**/*.test.js'",
"test:coverage-check": "jest --coverage --testMatch '**/test/unit/**/*.test.js'",
"lint": "eslint .",
"audit:resolve": "SHELL=sh resolve-audit --production",
"audit:check": "SHELL=sh check-audit --production",
"build:openapi": "swagger-cli bundle -t yaml -o src/interface/openapi.yaml src/interface/openapi_template.yaml && swagger-cli validate src/interface/openapi.yaml"
}
}