-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.27 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
{
"name": "tasty",
"version": "0.0.1",
"description": "Tasty - Delicious dotnet testing",
"main": "index.js",
"scripts": {
"c": "git-cz",
"record": "terminalizer record artifacts/record",
"play": "terminalizer play artifacts/record",
"render": "terminalizer render artifacts/record -o artifacts/record.gif"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xenial-io/Tasty.git"
},
"keywords": [
"dotnet",
"test",
"testing",
"tasty",
"delicious",
"coverage",
"snapshot",
"approval"
],
"author": "Xenial, Manuel Grundner",
"license": "MIT",
"bugs": {
"url": "https://github.com/xenial-io/Tasty/issues"
},
"homepage": "https://github.com/xenial-io/Tasty#readme",
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^10.0.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.2.0",
"dot-prop": "^5.2.0",
"husky": "^8.0.3",
"terminalizer": "^0.12.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "dotnet run --project build/Tasty.Build/Tasty.Build.csproj"
}
}
}