-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"test-packages/*"
],
"packageManager": "[email protected]",
"scripts": {
"benchmark": "yarn workspace @toml-tools/parser run benchmark",
"ci": "npm-run-all format:validate test",
"format:fix": "prettier --write \"**/*.@(ts|js|json|md)\"",
"format:validate": "prettier --list-different \"**/*.@(ts|js|json|md)\"",
"prepare": "simple-git-hooks",
"release": "changeset publish --tag release-v1",
"test": "yarn workspaces foreach run test",
"version": "changeset version && yarn --no-immutable"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"benchmark": "^2.1.4",
"chai": "^4.3.7",
"chai-exclude": "^2.1.0",
"klaw-sync": "^6.0.0",
"lint-staged": "^13.2.3",
"lodash-es": "^4.17.21",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"prettier-plugin-pkg": "^0.18.0",
"simple-git-hooks": "^2.9.0"
},
"lint-staged": {
"*.{ts,js,md,json}": [
"prettier --write"
]
},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged"
}
}