-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
126 lines (126 loc) · 3.11 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@codetanzania/emis-api-states",
"version": "0.12.1",
"description": "EMIS Redux state management library",
"main": "lib/index.js",
"module": "es/index.js",
"scripts": {
"clean": "rimraf lib es umd",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --fix --ext .jsx,.js src/ test/",
"build": "npm run clean && npm run lint && npm test && BABEL_ENV=production rollup -c",
"commit": "git-cz",
"commit:all": "git add -A && git-cz",
"cmt": "git add -A && git-cz",
"changelog": "changelog"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeTanzania/emis-api-states.git"
},
"keywords": [
"codetanzania",
"emis",
"emis-states",
"emis-api-states",
"redux",
"redux-starter-kit"
],
"files": [
"lib/",
"es/",
"src/",
"package.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"contributors": [
{
"name": "Benson Maruchu",
"email": "[email protected]",
"url": "https://github.com/BenMaruchu"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeTanzania/emis-api-states/issues"
},
"homepage": "https://github.com/CodeTanzania/emis-api-states#readme",
"dependencies": {
"@codetanzania/emis-api-client": ">=0.16.3",
"axios": ">=0.19.0",
"inflection": ">=1.12.0",
"lodash": ">=4.17.15",
"prop-types": ">=15.7.2",
"react": ">=16.11.0",
"react-redux": "7.2.4",
"redux": "4.1.0",
"redux-starter-kit": ">=1.0.1",
"redux-thunk": ">=2.3.0"
},
"devDependencies": {
"@babel/core": "7.14.6",
"@babel/preset-env": "7.14.5",
"@babel/preset-react": "7.14.5",
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@commitlint/travis-cli": "8.3.5",
"@testing-library/react": "11.2.7",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.28.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-jsdoc": "30.7.13",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.22.0",
"faker": "5.5.3",
"generate-changelog": "1.8.0",
"husky": "4.3.8",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"prettier": "2.3.1",
"react-dom": "17.0.2",
"redux-mock-store": "1.5.4",
"rollup": "2.51.2",
"rollup-plugin-babel": "4.4.0"
},
"jest": {
"verbose": false,
"collectCoverageFrom": [
"!**/node_modules/**",
"!**/vendor/**",
"!**/coverage/**",
"**/src/**"
],
"collectCoverage": true
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"src/**/*.js": [
"npm run lint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}