-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (119 loc) · 3.29 KB
/
package.json
File metadata and controls
120 lines (119 loc) · 3.29 KB
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
{
"name": "react-redux-test-utils",
"version": "0.0.0-semantic-release",
"description": "Utils for testing react-redux applications using enzyme and jest snapshots",
"license": "MIT",
"repository": "https://github.com/sharvit/react-redux-test-utils",
"author": {
"name": "Avi Sharvit",
"email": "sharvita@gmail.com",
"url": "https://sharvit.github.io"
},
"engines": {
"node": ">=8"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "babel src --out-dir dist --ignore **/*.test.js",
"build:docs": "esdoc",
"build:docs:dev": "yarn build:docs && yarn build:docs:open && yarn build:docs:watch",
"build:docs:open": "opener ./htmldocs/index.html",
"build:docs:watch": "npm-watch build:docs",
"deploy:docs": "gh-pages -d htmldocs",
"test:watch": "jest --watch",
"test": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint ./src",
"lint:commit": "commitlint -e",
"lint:commit-travis": "commitlint-travis",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"main": "dist/index.js",
"files": [
"dist"
],
"peerDependencies": {
"enzyme": "3.x",
"enzyme-to-json": "3.x",
"react": "16.x",
"react-redux": "6.x",
"redux": "4.x",
"redux-thunk": "2.x"
},
"watch": {
"build:docs": {
"patterns": [
"src",
"docs",
"readme.md",
".esdoc.js"
],
"extensions": "js,md,json",
"ignore": "src/.external-ecmascript.js"
}
},
"dependencies": {},
"optionalDependencies": {
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/travis-cli": "^7.2.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-add-module-exports": "^1.0.0",
"commitlint-config-cz": "^0.11.0",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "2.1.0",
"enzyme": "^3.8.0",
"enzyme-to-json": "^3.3.5",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-importpath-plugin": "^1.0.2",
"esdoc-jsx-plugin": "^1.0.0",
"esdoc-replace-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.10.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^23.6.0",
"npm-watch": "^0.5.0",
"opener": "^1.5.1",
"prettier": "^1.15.3",
"react": "^16.6.3",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"rimraf": "^2.6.2"
},
"optionalDependencies": {
"semantic-release": "^15.13.1"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.js$": "babel-jest"
},
"collectCoverageFrom": [
"src/**/*.js"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": []
}