-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.29 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": "@uncovertruth/styleguide",
"version": "1.0.0",
"author": "UNCOVER TRUTH Inc.",
"devDependencies": {
"can-npm-publish": "1.3.4",
"eslint": "7.28.0",
"fixpack": "4.0.0",
"husky": "6.0.0",
"lerna": "4.0.0",
"lerna-changelog": "1.0.1",
"lint-staged": "11.0.0",
"prettier-eslint-cli": "5.0.1",
"textlint": "12.0.0"
},
"lint-staged": {
"package.json": [
"fixpack",
"git add"
],
"*.md": [
"prettier --write",
"textlint -c packages/textlint-config-en/index.js",
"git add"
],
"*.{css,scss,ts,tsx}": [
"prettier --write",
"git add"
],
"*.{ts,tsx}": [
"prettier --write",
"tslint --fix -c packages/tslint-config/tslint.json",
"git add"
],
"*.{js,jsx}": [
"prettier-eslint --write --eslint-config-path ./packages/eslint-config/index.js",
"git add"
]
},
"main": "n/a",
"private": true,
"repository": "ssh://git@github.com/uncovertruth/styleguide.git",
"scripts": {
"bump": "lerna publish --skip-npm --skip-git && lerna-changelog",
"precommit": "lint-staged",
"release": "lerna exec --bail=false -- 'can-npm-publish && npm publish && echo done ; echo skip'",
"test": "lerna run test --parallel"
},
"workspaces": [
"packages/*"
]
}