forked from tsparticles/tsparticles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 794 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 794 Bytes
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
{
"private": true,
"name": "tsparticles-workspace",
"version": "0.0.0",
"scripts": {
"build": "lerna run build",
"version:alpha": "lerna version prerelease --preid alpha --conventional-commits",
"version:beta": "lerna version prerelease --preid beta --conventional-commits",
"publish:alpha": "lerna publish from-package --pre-dist-tag alpha --preid alpha",
"publish:beta": "lerna publish from-package --pre-dist-tag beta --preid beta",
"deploy:site": "lerna run deploy --scope website"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"husky": "^7.0.0",
"ini": "^2.0.0",
"lerna": "^4.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}