-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.96 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
{
"$schema": "https://json.schemastore.org/package",
"name": "ignore-sync",
"version": "7.0.1",
"description": "a CLI tool to build and sync *ignore files across files and repositories",
"keywords": [
".dockerignore",
".eslintignore",
".gitignore",
".npmignore",
"dockerignore",
"eslintignore",
"gitignore",
"ignore",
"npmignore"
],
"repository": "https://github.com/foray1010/ignore-sync",
"license": "MIT",
"author": "foray1010",
"type": "module",
"bin": "src/bin.js",
"files": [
"src",
"*.md"
],
"scripts": {
"ci": "yarn lint:js && yarn lint:md && yarn jest",
"postinstall": "husky",
"jest": "cross-env NODE_ENV=test node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint:js": "eslint .",
"lint:md": "yarn remark .",
"mermaid": "glob-exec --foreach 'docs/**/*.mmd' -- 'mmdc -i {{file}} -o {{file}}.png'",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"prettier": "prettier --ignore-path=node_modules/@foray1010/prettier-config/prettierignore",
"remark": "remark --frail --ignore-path=node_modules/@foray1010/remark-preset/remarkignore --ignore-path-resolve-from=cwd --silently-ignore"
},
"dependencies": {
"axios": "^1.6.2",
"fast-glob": "^3.3.2",
"ignore": "^5.3.0",
"ramda": "^0.30.0"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@foray1010/eslint-config": "13.0.1",
"@foray1010/jest-preset": "5.1.0",
"@foray1010/prettier-config": "11.0.1",
"@foray1010/remark-preset": "10.0.1",
"cross-env": "7.0.3",
"eslint": "9.13.0",
"glob-exec": "0.1.1",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"mermaid.cli": "0.5.1",
"node-notifier": "10.0.1",
"pinst": "3.0.0",
"prettier": "3.3.3",
"remark-cli": "12.0.1"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.12.0 || >=20.9.0"
}
}