-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
52 lines (52 loc) · 1.57 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": "animxyz",
"version": "0.0.0",
"private": true,
"description": "AnimXYZ is a composable animation library that makes your site shine",
"homepage": "https://animxyz.com",
"author": "Ingram Projects (https://github.com/ingram-projects/animxyz/graphs/contributors)",
"contributors": [
"Miles Ingram <[email protected]> (https://milesingram.me/)",
"Mattan Ingram <[email protected]> (http://mattaningram.com/)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ingram-projects/animxyz.git"
},
"license": "MIT",
"workspaces": {
"packages": [
"packages/*",
"examples/*",
"docs"
]
},
"scripts": {
"build": "lerna run build",
"lint": "eslint --ignore-path .gitignore --fix",
"lint-all": "yarn run lint --ext .js,.jsx,.vue .",
"prepare": "husky install",
"pre-commit": "lint-staged",
"commit-msg": "npx --no-install commitlint --edit \"$1\"",
"publish": "lerna run build && lerna publish",
"publish-prerelease": "yarn run publish --conventional-prerelease",
"publish-graduate": "yarn run publish --conventional-graduate"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@commitlint/config-lerna-scopes": "^12.1.4",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"yarn run lint"
]
}
}