-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 910 Bytes
/
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
{
"name": "@kilcekru/libraries",
"version": "1.0.0",
"description": "npm packages",
"private": true,
"license": "ISC",
"author": {
"name": "Andreas Lackinger",
"email": "[email protected]"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Kilcekru/libraries.git"
},
"engines": {
"node": ">=16"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"scripts": {
"cz": "cz",
"clean": "npm run clean --ws --if-present",
"clean:all": "npm run clean:all --ws --if-present && rimraf node_modules",
"build": "npm run build --ws --if-present",
"lint": "npm run lint --ws --if-present",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"devDependencies": {
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2"
}
}