-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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
{
"name": "dataset",
"version": "1.0.0",
"private": true,
"description": "A dataset monorepo for jser.info",
"keywords": [
"jser"
],
"homepage": "https://github.com/jser/dataset",
"bugs": {
"url": "https://github.com/jser/dataset/issues"
},
"license": "MIT",
"author": "azu",
"repository": {
"type": "git",
"url": "https://github.com/jser/dataset.git"
},
"scripts": {
"bootstrap": "yarn run build",
"build": "lerna run build",
"test": "lerna run test",
"clean": "lerna run clean",
"versionup": "lerna version --conventional-commits",
"versionup:patch": "lerna version patch --conventional-commits",
"versionup:minor": "lerna version minor --conventional-commits",
"versionup:major": "lerna version major --conventional-commits",
"release": "lerna publish from-package",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"devDependencies": {
"lerna": "^7.0.1",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8"
},
"workspaces": [
"packages/*",
"packages/@jser/*"
],
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
}
}