-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
{
"name": "react-convert-image",
"version": "0.5.0",
"license": "MIT",
"main": "lib/react-convert-image.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack && yarn test",
"dev": "webpack --progress --colors --watch",
"prepublish": "yarn build",
"test": "jest src",
"test:watch": "yarn test --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/mozmorris/react-convert-image.git"
},
"jest": {
"setupFiles": [
"./internals/jestSetup.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"mocks"
]
},
"dependencies": {
"prop-types": "^15.6.1"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.2.0",
"react-dom": "^15.3.0 || ^16.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.5.0-alpha.3cc09dcf",
"babel-preset-react": "^6.24.1",
"canvas-prebuilt": "^1.6.5-prerelease.1",
"cross-env": "^5.1.4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-15": "^1.0.5",
"enzyme-to-json": "^3.3.1",
"eslint": "^5.4.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-jest": "^21.14.0",
"eslint-plugin-react": "^7.7.0",
"jest": "^23.5.0",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-test-renderer": "15",
"webpack": "^3.10.0"
}
}