This repository has been archived by the owner on Jan 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
92 lines (92 loc) · 2.7 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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@hospitalrun/cli",
"version": "0.4.6",
"description": "HospitalRun CLI",
"bin": {
"hospitalrun": "bin/hospitalrun.js"
},
"repository": {
"type": "git",
"url": "https://github.com/HospitalRun/cli.git"
},
"scripts": {
"hospitalrun": "npm run build && node bin/hospitalrun",
"commit": "npx git-cz",
"build": "npm run clean && tsc -p ./tsconfig.json",
"clean": "rimraf bin",
"update": "yarn upgrade-interactive --latest",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
"test": "cross-env TS_NODE_PROJECT=./test/tsconfig.json tap test/**/*.ts",
"test:ci": "cross-env TS_NODE_PROJECT=./test/tsconfig.json tap --coverage-report=text-lcov test/**/*.ts > lcov.info",
"lint-staged": "lint-staged",
"commitlint": "commitlint",
"semantic-release": "semantic-release"
},
"keywords": [],
"author": "Maksim Sinik <[email protected]>",
"license": "MIT",
"dependencies": {
"@sinclair/typebox": "~0.10.0",
"ajv": "~6.12.0",
"chalk": "~4.1.0",
"glob": "~7.1.6",
"mkdirp": "~1.0.3",
"require-from-string": "~2.0.2",
"sade": "~1.7.3",
"typescript": "~4.0.2"
},
"devDependencies": {
"@commitlint/cli": "~9.1.1",
"@commitlint/config-conventional": "~11.0.0",
"@commitlint/prompt": "~11.0.0",
"@semantic-release/changelog": "~5.0.0",
"@semantic-release/commit-analyzer": "~8.0.1",
"@semantic-release/git": "~9.0.0",
"@semantic-release/github": "~7.1.1",
"@semantic-release/release-notes-generator": "~9.0.0",
"@types/glob": "~7.1.1",
"@types/mkdirp": "~1.0.0",
"@types/node": "~14.11.1",
"@types/require-from-string": "~1.2.0",
"@types/rimraf": "~3.0.0",
"@types/sade": "~1.7.0",
"@typescript-eslint/eslint-plugin": "~4.0.0",
"@typescript-eslint/parser": "~4.0.1",
"commitizen": "~4.2.0",
"commitlint-config-cz": "~0.13.0",
"cross-env": "~7.0.0",
"cz-conventional-changelog": "~3.3.0",
"dotenv": "~8.2.0",
"eslint": "~7.9.0",
"eslint-config-prettier": "~6.11.0",
"eslint-plugin-import": "~2.22.0",
"eslint-plugin-prettier": "~3.1.0",
"husky": "~4.2.0",
"lint-staged": "~10.4.0",
"prettier": "~2.1.1",
"rimraf": "~3.0.2",
"semantic-release": "~17.1.0",
"tap": "~14.10.5",
"tap-mocha-reporter": "~5.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "npm run commitlint -- -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npm run lint"
]
},
"files": [
"bin"
]
}