-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "jiralint",
"version": "0.0.0",
"license": "UNLICENSED",
"private": true,
"repository": {
"url": "https://github.com/agiledigital/jiralint.git",
"type": "git"
},
"engines": {
"node": ">=10"
},
"workspaces": [
"lib",
"cli"
],
"scripts": {
"build": "npm run build --workspaces",
"start": "npm run start --workspaces",
"lint": "npm run lint --workspaces",
"coverage": "npm run coverage --workspaces",
"format": "npm run format --workspaces",
"test": "npm run test --workspaces",
"prepare": "husky install",
"commit": "git-cz",
"release": "npm run release --workspace=lib"
},
"devDependencies": {
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint-config-agile-digital": "^2.6.0",
"fast-check": "3.7.1",
"husky": "7.0.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"io-ts-reporters": "^2.0.1",
"semantic-release": "19.0.5",
"ts-node": "^10.9.1"
}
}