-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.32 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
{
"name": "redux-idle-callback",
"version": "1.0.0",
"description": "Middleware to detect when redux store has been idle",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"prepare": "npm run build && husky install",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint --ignore-path .npmignore --ext js,jsx src __tests__",
"test:lockfile": "lockfile-lint -p package-lock.json -t npm -a npm -o https: -c -i",
"test:git-history": "commitlint --from origin/main --to HEAD",
"test:unit": "jest",
"posttest": "npm run test:git-history && npm run test:lockfile"
},
"repository": {
"type": "git",
"url": "https://github.com/americanexpress/redux-idle-callback.git"
},
"keywords": [
"redux",
"middleware",
"idle"
],
"author": "Andrew Sutedja <andrew.sutedja@aexp.com>",
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"amex-jest-preset": "^7.0.0",
"babel-preset-amex": "^4.0.1",
"eslint": "^8.56.0",
"eslint-config-amex": "^16.0.0",
"eslint-plugin-jest": "^27.6.1",
"eslint-plugin-jest-dom": "^4.0.3",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lockfile-lint": "^4.12.1",
"semantic-release": "^22.0.12"
},
"jest": {
"preset": "amex-jest-preset",
"testPathIgnorePatterns": [
"/node_modules/"
],
"coveragePathIgnorePatterns": [
"<rootDir>/commitlint.config.js"
]
},
"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"
]
}
}