-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "react-img-preload",
"version": "2.0.0",
"description": "Higher-order React component for image preloading",
"main": "dist/ImagePreload.js",
"scripts": {
"prepublish": "npm run build",
"build": "babel src --out-dir dist",
"lint": "eslint --ext .es ./src",
"test": "mocha test --compilers js:babel/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wizardzloy/react-img-preload.git"
},
"keywords": [
"react",
"image",
"preload",
"higher-order-component"
],
"author": "Vladimir Guguiev <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/wizardzloy/react-img-preload/issues"
},
"homepage": "https://github.com/wizardzloy/react-img-preload#readme",
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"chai": "^3.2.0",
"eslint": "^1.4.3",
"eslint-config-airbnb": "0.0.8",
"eslint-plugin-react": "^3.4.1",
"jsdom": "^6.5.1",
"mocha": "^2.3.2",
"pre-commit": "^1.1.1",
"sinon": "^1.16.1"
},
"dependencies": {
"react": "^0.13.3"
},
"pre-commit": [
"lint",
"test"
]
}