-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
73 lines (73 loc) · 1.99 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
{
"name": "react-image-fallback",
"version": "8.0.0",
"description": "if your image doesn't exist, fallback onto another provided image.",
"main": "lib/index.js",
"scripts": {
"build": "./node_modules/babel-cli/bin/babel.js src --out-dir lib",
"prepublishOnly": "npm run build",
"lint": "./node_modules/.bin/eslint ./src",
"test": "npm run build && npm run lint && browserify test/index.js | tap-closer | smokestack -b firefox | tap-status",
"test-debug": "npm run build && npm run lint && browserify test/index.js | smokestack | tap-status",
"watch": "./node_modules/babel-cli/bin/babel.js src --watch --out-dir lib",
"changeset": "changeset",
"release": "st-changeset release --skipPublish"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"react"
]
}
]
]
},
"repository": {
"type": "git",
"url": "https://github.com/socialtables/react-image-fallback.git"
},
"keywords": [
"react",
"image",
"fallback",
"preload",
"preloader",
"reactjs"
],
"author": "Social Tables",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/socialtables/react-image-fallback/issues"
},
"homepage": "https://github.com/socialtables/react-image-fallback",
"peerDependencies": {
"react": ">=0.13"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@socialtables/changesets": "^1.2.2",
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"eslint": "^1.2.0",
"eslint-plugin-react": "^3.1.0",
"react": "^15",
"react-dom": "^15",
"smokestack": "^3.4.1",
"tap-closer": "^1.0.0",
"tap-status": "^1.0.1",
"tape": "^4.4.0",
"tape-catch": "^1.0.4",
"testdouble": "^1.2.0"
},
"dependencies": {
"filter-invalid-dom-props": "1.0.0",
"prop-types": "^15.5.10"
}
}