forked from mojaloop/ml-testing-toolkit-shared-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.67 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
{
"name": "ml-testing-toolkit-shared-lib",
"version": "11.0.0",
"description": "Shared library for ml-testing-toolkit re-usable functions",
"main": "src/index.js",
"pre-commit": [
"standard"
],
"scripts": {
"start": "node src/index.js",
"standard": "standard",
"test": "npm run test:unit",
"test:unit": "jest --testMatch '**/test/unit/**/*.test.js'",
"test:int": "jest --reporters=default --reporters=jest-junit --testMatch '**/test/integration/**/*.test.js'",
"test:coverage": "jest --coverage --coverageThreshold='{}' --testMatch '**/test/unit/**/*.test.js'",
"test:coverage-check": "jest --coverage --testMatch '**/test/unit/**/*.test.js'",
"test:junit": "jest --reporters=default --reporters=jest-junit --testMatch '**/test/unit/**/*.test.js'",
"test:integration": "./test/integration-runner.sh ",
"cover": "npx nyc --all report --reporter=lcov npm run test",
"lint": "eslint --ignore-path ../.eslintignore .",
"audit:resolve": "SHELL=sh resolve-audit",
"audit:check": "SHELL=sh check-audit",
"dep:check": "npx ncu -e 2",
"dep:update": "npx ncu -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mojaloop/ml-testing-toolkit-shared-lib.git"
},
"author": "Vijaya Kumar Guthi, ModusBox Inc.",
"contributors": [
"Vijaya Kumar <vijaya.guthi@modusbox.com>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mojaloop/ml-testing-toolkit-shared-lib/issues"
},
"homepage": "https://github.com/mojaloop/ml-testing-toolkit-shared-lib#readme",
"dependencies": {
"node-dir": "^0.1.17"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}