-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.24 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
{
"name": "tally",
"version": "0.1.0",
"description": "A simple Node.js CLI application built using only core modules, plain callbacks, and asynchronous I/O functions",
"keywords": [
"async",
"cli",
"cli-app",
"cross-platform",
"javascript",
"nodejs",
"typescript"
],
"homepage": "https://github.com/ajtorres9/tally#readme",
"bugs": "https://github.com/ajtorres9/tally/issues",
"license": "MIT",
"author": "Andrew Torres <andrew.jonathan.torres@gmail.com> (https://andrewjtorr.es)",
"bin": "./cli.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ajtorres9/tally.git"
},
"scripts": {
"build": "tsc --project tsconfig.node.json",
"hook:pre-commit": "lint-staged",
"lint": "npm-run-all --parallel \"lint:*\"",
"lint:files": "prettylint \"**/*.{json,md,yml}\"",
"lint:scripts": "eslint --ignore-path .gitignore \"**/*.{js,ts}\"",
"lint:types": "tsc --noEmit --project tsconfig.jest.json && tsc --noEmit --project tsconfig.node.json",
"prepare": "husky install",
"test": "npm-run-all --parallel \"test:*\"",
"test:units": "jest"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^40.1.0",
"husky": "^8.0.2",
"jest": "^27.5.1",
"jest-circus": "^27.5.1",
"lint-staged": "^13.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"prettylint": "^1.0.0",
"ts-jest": "^27.1.4",
"typescript": "^4.9.3",
"utils": "link:src/utils"
},
"engines": {
"node": ">=16.13",
"yarn": ">=1.22"
},
"private": true,
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"jest --bail --find-related-tests"
],
"*.{json,md,yml}": [
"prettylint --fix"
]
}
}