forked from empiricaly/meteor-empirica-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "meteor-empirica-core",
"version": "1.4.3",
"description": "Core Meteor package for the experiment Empirica platform.",
"main": "server.js",
"repository": "[email protected]:empiricaly/meteor-empirica-core.git",
"author": "Nicolas Paton <[email protected]>",
"license": "MIT",
"scripts": {
"commit": "npx git-cz",
"release-patch": "standard-version -s -a -r patch",
"release-minor": "standard-version -s -a -r minor",
"release": "standard-version -s -a -r",
"push-git": "git push --follow-tags origin master",
"publish-meteor": "meteor --release 1.8.2 publish"
},
"standard-version": {
"scripts": {
"postbump": "./scripts/syncver.sh",
"prechangelog": "rm CHANGELOG.md"
}
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^7.1.2",
"cz-conventional-changelog": "2.1.0",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.2",
"standard-version": "^7.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,jsx,json,css,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {}
}