-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 854 Bytes
/
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
{
"name": "@pretty-cozy/root",
"version": "0.4.0",
"description": "Collection of pretty cozy utilities to make npm workflows easier",
"author": "Pretty Coffee",
"license": "MIT",
"workspaces": [
"packages/eslint-config",
"packages/eslint-plugin",
"packages/git-hooks",
"packages/release-tools"
],
"scripts": {
"release": "node ./scripts/release.js",
"publish": "node ./scripts/publish.js",
"publish:preview": "npm run publish -- --preview",
"lint": "eslint . --ext .js --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"prepare": "cozy-git-hooks install --quiet"
},
"devDependencies": {
"enquirer": "^2.4.1",
"glob": "^10.3.10"
},
"eslintConfig": {
"extends": [
"@pretty-cozy"
]
},
"lint-staged": {
"*.js": [
"npm run lint:fix"
]
}
}