forked from FuelLabs/data-systems
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 698 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "fuel-streams",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"prettier:fix": "prettier --write \"**/*.@(json|md|sh|toml)\"",
"prettier:validate": "prettier --check \"**/*.@(json|md|sh|toml)\"",
"md:lint": "markdownlint -c .markdownlint.json \"**/*.md\" \".github/**/*.md\" -i \"target\" -i \"node_modules\" -i \"CHANGELOG.md\"",
"md:fix": "pnpm md:lint --fix"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"commitlint": "^19.6.0",
"markdownlint": "^0.36.1",
"markdownlint-cli": "^0.43.0",
"prettier": "^3.4.1",
"prettier-plugin-sh": "^0.14.0",
"prettier-plugin-toml": "^2.0.1"
}
}