-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.54 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
{
"name": "mt-testutils",
"version": "1.0.0",
"description": "Utility functions to make testing React/Redux applications with Jest easier",
"main": "index.js",
"scripts": {
"test": "jest",
"precommit": "lint-staged",
"postinstall": "lerna bootstrap",
"publish": "lerna publish ${@:1}",
"publish-beta": "lerna publish --npm-tag=beta --cd-version=prerelease --preid=beta ${@:1}",
"publish-beta-patch": "lerna publish --npm-tag=beta --cd-version=prepatch --preid=beta ${@:1}",
"publish-beta-minor": "lerna publish --npm-tag=beta --cd-version=preminor --preid=beta ${@:1}",
"publish-beta-major": "lerna publish --npm-tag=beta --cd-version=premajor --preid=beta ${@:1}",
"undo": "git reset --hard HEAD~1 && git tag -d $(git log --date-order --tags --simplify-by-decoration --pretty=format:'%d' | head -1 | tr -d '()' | sed 's/,* tag://g')"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/setupJest.js",
"transformIgnorePatterns": [
"<rootDir>.*(node_modules)(?!.*@mt-.*).*$"
]
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add",
"jest --bail --findRelatedTests"
]
},
"repository": {
"type": "git",
"url": "https://github.com/technology-ebay-de/mt-testutils.git"
},
"author": "Patrick Hund <[email protected]>",
"contributors": [
"Ninja Maaß <[email protected]>",
"Daniel Schäfer <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-jest": "^23.6.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-enzyme": "^1.0.0-beta.0",
"cheerio": "^1.0.0-rc.2",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"eslint": "^4.17.0",
"eslint-config-motor-talk": "^5.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-jest": "^21.12.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.6.1",
"husky": "^0.14.3",
"jest": "^23.6.0",
"lerna": "^2.8.0",
"lint-staged": "^6.1.0",
"prettier": "^1.10.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-test-renderer": "^16.2.0",
"recompose": "^0.26.0",
"redux": "^3.7.2",
"sinon": "^4.3.0",
"sinon-chai": "^2.14.0"
}
}