-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.61 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
{
"name": "@commercetools/enzyme-extensions",
"version": "5.0.0",
"description": "Enzyme extensions tailored at improving dealing with shallowly rendered wrappers",
"main": "dist/enzyme-extensions.cjs.js",
"module": "dist/enzyme-extensions.esm.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "cross-env NODE_ENV=production rollup -c rollup.config.js",
"format:js": "prettier --write '**/*.js'",
"format:md": "prettier --write --parser markdown '**/*.md'",
"lint": "eslint src/*",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commercetools/enzyme-extensions.git"
},
"engines": {
"node": ">=6",
"npm": ">=3"
},
"files": [
"dist"
],
"keywords": [],
"author": "Tobias Deekens <tobias.deekens@commercetools.de>",
"contributors": [
"Dominik Ferber <dominik.ferber+npm@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/commercetools/enzyme-extensions/issues"
},
"homepage": "https://github.com/commercetools/enzyme-extensions#readme",
"dependencies": {
"common-tags": "1.8.0",
"lodash.omit": "^4.5.0",
"react-display-name": "0.2.4"
},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-transform-regenerator": "7.4.5",
"@babel/plugin-transform-runtime": "7.4.4",
"@babel/preset-env": "7.4.5",
"@babel/preset-react": "7.0.0",
"@babel/runtime-corejs3": "7.4.5",
"@commitlint/cli": "8.0.0",
"@commitlint/config-conventional": "8.0.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.8.0",
"core-js": "3.1.3",
"cross-env": "5.2.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "4.3.0",
"eslint-formatter-pretty": "2.1.1",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-jest": "22.6.4",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.13.0",
"husky": "2.4.0",
"jest": "24.8.0",
"jest-runner-eslint": "0.7.4",
"jest-watch-typeahead": "0.3.1",
"lint-staged": "8.2.0",
"prettier": "1.18.2",
"prop-types": "15.7.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"rimraf": "2.6.3",
"rollup": "1.15.2",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-cleanup": "3.1.1",
"rollup-plugin-commonjs": "10.0.0",
"rollup-plugin-node-resolve": "5.0.1"
},
"peerDependencies": {
"enzyme": "3.x"
}
}