-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 1.94 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
{
"name": "@americanexpress/vitruvius",
"version": "3.0.1",
"description": "Add buildInitialState method to your reducers",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"prebuild": "npm run test:lint && npm run clean",
"build": "babel src -d lib --copy-files",
"test": "npm run test:lint && npm run test:unit",
"test:git-history": "commitlint --from origin/main --to HEAD",
"test:lint": "eslint ./ --ignore-path .eslintignore --ext .js",
"test:lockfile": "lockfile-lint -p package-lock.json -t npm -a npm -o https: -c -i",
"test:unit": "jest",
"posttest": "npm run test:git-history && npm run test:lockfile",
"prepublishOnly": "npm run build",
"prepare": "husky install"
},
"jest": {
"preset": "amex-jest-preset",
"collectCoverageFrom": [
"src/**/*.js",
"!**/node_modules/**"
],
"testPathIgnorePatterns": [
"fixtures"
]
},
"repository": {
"type": "git",
"url": "https://github.com/americanexpress/vitruvius.git"
},
"keywords": [
"redux",
"reducer",
"immutable",
"initial state"
],
"author": "Jamie King <[email protected]> (https://github.com/10xLaCroixDrinker)",
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@reduxjs/toolkit": "^2.1.0",
"amex-jest-preset": "^7.0.0",
"babel-preset-amex": "^4.0.3",
"coveralls": "^3.1.1",
"eslint": "^8.56.0",
"eslint-config-amex": "^16.0.0",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-jest-dom": "^4.0.3",
"husky": "^8.0.3",
"immutable": "^4.3.5",
"jest": "^29.7.0",
"lockfile-lint": "^4.12.1",
"redux": "^5.0.1",
"redux-immutable": "^4.0.0",
"rimraf": "^5.0.5"
},
"peerDependencies": {
"immutable": "^3||^4.0.0-rc",
"redux": "^3||^4||^5",
"redux-immutable": "^4.0.0"
}
}