forked from braposo/react-responsive-picture
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.38 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
{
"name": "react-responsive-picture",
"version": "2.0.0",
"description": "A future-proof responsive image component that supports latest Picture specification",
"main": "./lib/index.js",
"module": "es/index.js",
"scripts": {
"build": "yarn run build:commonjs && yarn run build:es && npm run build:umd && npm run build:umd:min",
"build:es": "babel src -d es",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src -d lib",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack src/index.js dist/react-responsive-picture.js",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack src/index.js dist/react-responsive-picture.min.js",
"clean": "rimraf lib dist es",
"dev": "yarn run clean && cross-env BABEL_ENV=commonjs babel src -d lib --watch",
"lint": "eslint src/ --ext .js,.jsx",
"prepublish": "yarn run clean && yarn run build",
"release": "np",
"test": "echo \"No tests available\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EDITD/react-responsive-picture.git"
},
"files": [
"es",
"dist",
"lib",
"src"
],
"keywords": [
"image",
"picture",
"responsive",
"react"
],
"author": {
"name": "EDITED",
"email": "[email protected]",
"url": "http://edited.tech"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/EDITD/react-responsive-picture/issues"
},
"homepage": "https://github.com/EDITD/react-responsive-picture#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.0",
"babel-plugin-glamorous-displayname": "^1.1.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.23.0",
"cross-env": "^5.0.1",
"eslint": "^4.0.0",
"eslint-config-edited": "^1.0.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-react": "^7.1.0",
"glamor": "^2.20.25",
"np": "^2.16.0",
"react": "^15.6.1",
"rimraf": "^2.4.3",
"webpack": "^3.0.0"
},
"peerDependencies": {
"glamor": "^2.20.25",
"react": "^15.0.1",
"react-dom": "^15.0.1"
},
"dependencies": {
"glamorous": "^3.23.3",
"picturefill": "^3.0.2",
"prop-types": "^15.5.10"
}
}