-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.41 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
{
"name": "react-unsplash-wrapper",
"version": "1.1.5",
"description": "A tiny React component to effortless use placeholder images from Unsplash",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"build": "rm -rf dist && babel src -d dist --ignore src/**/*.test.js",
"format": "prettier --write '**/*.js'",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marciobarrios/react-unsplash-wrapper.git"
},
"keywords": [
"react",
"unsplash",
"placeholder",
"images",
"pictures",
"photos"
],
"author": "Marcio Barrios <marciobarrios@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marciobarrios/react-unsplash-wrapper/issues"
},
"homepage": "https://github.com/marciobarrios/react-unsplash-wrapper#readme",
"browserslist": "> 0.25%, not dead",
"dependencies": {
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.7.2",
"eslint-config-unobtrusive": "^1.2.5",
"eslint-plugin-react": "^7.17.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-test-renderer": "^16.12.0"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
}
}