This repository has been archived by the owner on Jun 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.74 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@distributeaid/schemas",
"version": "0.0.0-development",
"description": "Distribute Aid Domain Schemas",
"scripts": {
"test": "jest",
"postinstall": "check-node-version --package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/distributeaid/schemas.git"
},
"keywords": [
"Distribute Aid"
],
"author": "Distribute Aid | https://distributeaid.org/",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/distributeaid/schemas/issues"
},
"homepage": "https://github.com/distributeaid/schemas#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged && npm test"
}
},
"lint-staged": {
"*.{md,json,yaml,yml,js,mjs}": [
"prettier --write"
]
},
"devDependencies": {
"@bifravst/code-style": "8.0.134",
"@commitlint/cli": "12.1.4",
"@commitlint/config-angular": "12.1.4",
"@semantic-release/commit-analyzer": "8.0.1",
"ajv": "8.5.0",
"ajv-formats": "2.1.0",
"chalk": "4.1.1",
"check-node-version": "4.1.0",
"glob": "7.1.7",
"husky": "6.0.0",
"jest": "27.0.6",
"lint-staged": "11.0.0",
"prettier": "2.3.2",
"semantic-release": "17.4.4"
},
"jest": {
"testURL": "http://localhost",
"moduleFileExtensions": [
"js",
"json"
],
"testRegex": ".+\\.spec\\.js$",
"coverageReporters": [
"html",
"lcov"
]
},
"release": {
"branches": [
"saga"
],
"remoteTags": true
},
"publishConfig": {
"access": "public"
},
"files": [
"package-lock.json",
"test",
"schemas",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
}
}