-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 902 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 902 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
26
27
28
29
30
31
32
33
{
"name": "root",
"private": true,
"version": "0.0.0",
"description": "parcelLab's CI library",
"author": "engineering@parcellab.com",
"engines": {
"node": ">=v18.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/parcelLab/ci.git"
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@types/is-ci": "^3.0.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^13.1.0",
"prettier": "2.8.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"scripts": {
"commitlint": "commitlint -x @commitlint/config-conventional --edit",
"format": "prettier --write --ignore-unknown .",
"format:staged": "lint-staged",
"lint": "prettier --check --ignore-unknown .",
"prepare": "test \"$NODE_ENV\" = production || is-ci || husky install"
}
}