-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
80 lines (80 loc) · 2.36 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@availity/uikit-monorepo",
"private": true,
"version": "4.7.3",
"workspaces": [
"packages/*"
],
"description": "Monorepo for availity-uikit and documentation",
"scripts": {
"link": "lerna link",
"bootstrap": "lerna bootstrap",
"clean": "lerna clean --yes",
"lint": "eslint .",
"postinstall": "lerna bootstrap",
"start": "yarn workspace @availity/availity-uikit-docs start",
"build:preview": "yarn workspace @availity/availity-uikit-docs build:preview",
"build": "yarn workspace @availity/availity-uikit-docs build",
"deploy": "yarn workspace @availity/availity-uikit-docs deploy",
"test": "echo \"Error: no test specified\" && exit 0",
"release": "sh ./scripts/release.sh",
"publish:uikit": "yarn workspace availity-uikit publish",
"bump-type": "conventional-recommended-bump -p angular",
"update-changelog": "conventional-changelog -i CHANGELOG.md -o CHANGELOG.md -p angular",
"remove-locks": "find . -type f -name 'package-lock.json' -delete",
"nuke": "yarn remove-locks && yarn clean && rm -rf ./node_modules",
"update-fonts": "node scripts/updateFont.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Availity/availity-uikit.git"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"babel-eslint": "^10.0.1",
"conventional-changelog": "^3.0.6",
"conventional-changelog-cli": "^2.0.12",
"conventional-recommended-bump": "^6.0.11",
"eslint-config-availity": "^9.0.0",
"husky": "^4.3.5",
"jest": "^26.6.3",
"lerna": "^5.0.0",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^4.1.2"
},
"keywords": [
"uikit",
"availity",
"ux",
"bootstrap"
],
"author": "Robert McGuinness <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Availity/availity-uikit/issues"
},
"homepage": "https://github.com/Availity/availity-uikit#readme",
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
},
"lint-staged": {
"*.js": [
"prettier"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}