forked from FormidableLabs/react-progressive-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.67 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
{
"name": "react-progressive-image",
"version": "0.1.2",
"description": "Progressive image loading for React",
"main": "dist.js",
"scripts": {
"build": "babel index.js --out-file dist.js",
"umd": "webpack --config webpack.config.umd.js",
"lint": "eslint index.js",
"flow": "flow",
"test:only": "jest",
"test": "npm run lint && npm run flow && npm run test:only",
"prepublish": "npm run test && npm run build && npm run umd",
"demo": "webpack-dev-server --inline --hot --config demo/webpack.config.js --content-base demo/"
},
"keywords": [
"react",
"progressive",
"images",
"loading"
],
"repo": "https://github.com/FormidableLabs/react-progressive-image.git",
"author": "Brandon Dail <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-jest": "^15.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"enzyme": "^2.4.1",
"eslint": "^3.6.0",
"eslint-config-formidable": "^1.0.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-flowtype": "^2.19.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-react": "^6.3.0",
"flow-bin": "^0.32.0",
"jest": "^15.1.1",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1"
},
"peerDependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2"
}
}