generated from maehr/open-research-data-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.08 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
{
"name": "nordatlantisk-ft",
"description": "Voting Records for Greenlandic and Faroese MPs in Folketinget",
"author": "Moritz Twente <mailto:moritz.twente@unibas.ch>",
"url": "https://github.com/mtwente/nordatlantisk-ft/issues",
"license": "AGPL-3.0",
"scripts": {
"check": "prettier --ignore-path .gitignore --check . '!{CODE_OF_CONDUCT.md,LICENSE.md,_layouts/default.html,package-lock.json,pnpm-lock.yaml,yarn.lock}'",
"commit": "cz",
"format": "prettier --ignore-path .gitignore --write . '!{CODE_OF_CONDUCT.md,LICENSE.md,_layouts/default.html,package-lock.json,pnpm-lock.yaml,yarn.lock}'",
"prepare": "husky install",
"changelog": "npm exec git-cliff -- --config cliff.toml"
},
"devDependencies": {
"commitizen": "^4.3.0",
"cz": "^1.8.2",
"cz-conventional-changelog": "^3.3.0",
"git-cliff": "^1.3.1",
"husky": "^8.0.3",
"prettier": "^3.0.3"
},
"type": "module",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
}
}
}