forked from americanexpress/vitruvius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.88 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
{
"name": "@americanexpress/vitruvius",
"version": "2.0.0",
"description": "Add buildInitialState method to your reducers",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"prebuild": "npm run lint && npm run clean",
"build": "babel src -d lib --copy-files",
"lint": "eslint ./ --ignore-path .eslintignore --ext .js",
"pretest": "npm run lint",
"test": "jest",
"test:git-history": "commitlint --from origin/master --to HEAD",
"test:lockfile": "lockfile-lint -p package-lock.json -t npm -a npm -o https: -c -i",
"posttest": "npm run test:git-history && npm run test:lockfile",
"prepublishOnly": "npm run build"
},
"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": "Jimmy King <jimmy.king@aexp.com> (https://github.com/10xLaCroixDrinker)",
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "^7.10.0",
"@babel/core": "^7.10.0",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"amex-jest-preset": "^6.1.0",
"babel-preset-amex": "^3.0.0",
"coveralls": "^3.0.7",
"eslint": "^6.5.1",
"eslint-config-amex": "^11.1.0",
"husky": "^3.1.0",
"immutable": "^4.0.0-rc.12",
"jest": "^24.9.0",
"lockfile-lint": "^4.1.0",
"redux": "^4.0.4",
"redux-immutable": "^4.0.0",
"rimraf": "^3.0.0"
},
"peerDependencies": {
"immutable": "^3||^4",
"redux": "^3||^4",
"redux-immutable": "^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}