-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.19 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.19 KB
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
{
"name": "digital-gardening-kit",
"version": "0.0.1",
"description": "Kit de ferramentas para a jardinagem digital",
"scripts": {
"test": "jest",
"format": "prettier --write \"**/*.md\"",
"lint:main": "markdownlint --config .markdownlint.json \"10 - Fleeting & Daily/**/*.md\" \"20 - Projects/**/*.md\" \"30 - Areas/**/*.md\" \"40 - Resources/**/*.md\" \"50 - Archives/**/*.md\" \"99 - Meta & Attachments/**/*.md\"",
"lint:docs": "markdownlint --config docs/.markdownlint.json \"docs/**/*.md\"",
"lint:templates": "markdownlint --config \"90 - Templates/.markdownlint.json\" \"90 - Templates/**/*.md\"",
"lint": "npm run lint:main && npm run lint:docs && npm run lint:templates",
"release": "standard-version --skip.tag --infile CHANGELOG.md",
"release:minor": "standard-version --skip.tag --release-as minor --infile CHANGELOG.md",
"release:major": "standard-version --skip.tag --release-as major --infile CHANGELOG.md"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"markdownlint-cli": "^0.45.0",
"prettier": "^3.6.2",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"standard-version": "^9.5.0"
}
}