-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.62 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
{
"name": "homebrew-caboodle",
"version": "0.1.0",
"description": "Collection of Homebrew formulae.",
"private": true,
"scripts": {
"postinstall": "husky install .github/husky",
"lint": "run-p format:check lint-es",
"lint:fix": "run-s format lint-es:fix",
"lint-es": "eslint --max-warnings 0 --ext .ts,.tsx,.js,.jsx,.json .",
"lint-es:file": "eslint --max-warnings 0 --ext .ts,.tsx,.js,.jsx,.json",
"lint-es:fix": "eslint --max-warnings 0 --ext .ts,.tsx,.js,.jsx,.json --fix .",
"lint-es:file:fix": "eslint --max-warnings 0 --ext .ts,.tsx,.js,.jsx,.json --fix",
"format": "prettier --ignore-path .eslintignore --write \"**/*.{js,jsx,vue,ts,css,less,scss,html,htm,json,md,markdown,yml,yaml}\"",
"format:check": "prettier --ignore-path .eslintignore --check \"**/*.{js,jsx,vue,ts,css,less,scss,html,htm,json,md,markdown,yml,yaml}\"",
"format:file": "prettier --write",
"build": "tsc",
"build:check": "tsc --noEmit",
"build:clean-first": "run-s clean build",
"clean": "rm -rf ./dist",
"test": "jest",
"test:ci": "jest --ci --verbose --coverage",
"test:staged": "jest --findRelatedTests $(git diff --staged --name-only)",
"start": "node_modules/.bin/ts-node ./src/index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vidavidorra/homebrew-caboodle.git"
},
"author": "Jeroen de Bruijn",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/vidavidorra/homebrew-caboodle/issues"
},
"homepage": "https://github.com/vidavidorra/homebrew-caboodle#readme",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@commitlint/cli": "12.0.1",
"@jest/globals": "26.6.2",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/exec": "5.0.0",
"@semantic-release/git": "9.0.0",
"@types/bunyan": "1.8.6",
"@types/node": "14.14.31",
"@types/progress": "2.0.3",
"@types/yargs": "16.0.0",
"@typescript-eslint/eslint-plugin": "4.15.2",
"@typescript-eslint/parser": "4.15.2",
"@vidavidorra/bunyan-pretty-stream": "1.0.4",
"@vidavidorra/commitlint-config": "2.1.14",
"bunyan": "1.8.15",
"dotenv": "8.2.0",
"eslint": "7.20.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-jest": "24.1.5",
"eslint-plugin-json": "2.1.2",
"eslint-plugin-prettier": "3.3.1",
"husky": "5.1.1",
"jest": "26.6.3",
"joi": "17.4.0",
"lint-staged": "10.5.4",
"npm-run-all": "4.1.5",
"prettier": "2.2.1",
"progress": "2.0.3",
"semantic-release": "17.4.0",
"ts-jest": "26.5.2",
"ts-node": "9.1.1",
"typescript": "4.2.2",
"yargs": "16.2.0"
}
}