-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
93 lines (93 loc) · 2.43 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
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "jest-json-schema",
"version": "6.1.0",
"description": "JSON schema matcher for jest",
"main": "index.js",
"scripts": {
"lint": "eslint ./ --ignore-path .gitignore --ext .js",
"pretest": "npm run lint",
"test": "jest",
"test:git-history": "commitlint --from origin/main --to HEAD",
"test:lockfile": "lockfile-lint -p package-lock.json -t npm -a npm -o https: -c -i",
"posttest": "npm run test:lockfile && npm run test:git-history"
},
"repository": {
"type": "git",
"url": "https://github.com/americanexpress/jest-json-schema.git"
},
"jest": {
"preset": "amex-jest-preset",
"coveragePathIgnorePatterns": [
"<rootDir>/commitlint.config.js"
]
},
"keywords": [
"jest",
"json",
"schema",
"matcher",
"test"
],
"author": "Jamie King <[email protected]> (https://github.com/10xLaCroixDrinker)",
"license": "Apache-2.0",
"dependencies": {
"ajv": "^8.8.2",
"ajv-formats": "^2.1.1",
"chalk": "^4.1.2",
"jest-matcher-utils": "^27.3.1"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.1.1",
"@semantic-release/npm": "^7.0.6",
"@semantic-release/release-notes-generator": "^9.0.1",
"ajv-keywords": "^5.1.0",
"amex-jest-preset": "^6.1.0",
"eslint": "^7.32.0",
"eslint-config-amex": "^15.0.1",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-jest-dom": "^3.9.2",
"husky": "^3.1.0",
"jest": "^25.5.4",
"lockfile-lint": "^4.3.7",
"prettier": "^2.4.1",
"semantic-release": "^17.1.2"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=15.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}