-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.18 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "ml-bootstrap",
"version": "0.3.29",
"description": "Bootstrapper tool for Mojaloop OSS Lab",
"main": "dist/src/cli.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint ./src/**/*.ts *.js",
"build": "tsc",
"watch": "tsc -w",
"ml-bootstrap": "ts-node ./src/cli.ts",
"test:coverage": "jest --coverage --coverageThreshold='{}'",
"test:coverage-check": "jest --coverage",
"test:junit": "jest --reporters=default --reporters=jest-junit",
"test:unit": "jest --testMatch '**/test/unit/**/*.(test|spec).ts'"
},
"bin": {
"ml-bootstrap": "./dist/src/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mojaloop/hackathon-docs.git"
},
"keywords": [
"metrics",
"central",
"services"
],
"author": "lewisdaly",
"contributors": [
"Lewis Daly <[email protected]>"
],
"license": "Apache-2.0",
"dependencies": {
"@mojaloop/central-services-logger": "^10.6.1",
"@mojaloop/sdk-standard-components": "14.0.0",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"commander": "^7.0.0",
"convict": "^6.0.0",
"json5": "^2.2.0",
"tslib": "^2.3.0",
"uuid": "^8.3.1"
},
"devDependencies": {
"@mojaloop/api-snippets": "11.0.18",
"@types/convict": "^5.2.2",
"@types/jest": "25.2.2",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "1.13.0",
"@typescript-eslint/parser": "1.13.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.0.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-cucumber": "^1.4.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"got": "^11.8.0",
"husky": "^4.2.5",
"jest": "26.0.1",
"jest-cucumber": "^2.0.11",
"jest-junit": "10.0.0",
"lint-staged": "^10.2.3",
"newman": "^5.2.2",
"node-plantuml": "^0.9.0",
"plantuml-encoder": "^1.4.0",
"source-map-support": "0.5.12",
"svgo": "^1.3.2",
"swagger-cli": "^4.0.3",
"ts-jest": "^26.0.0",
"ts-node": "8.3.0",
"typescript": "3.9.2"
}
}