-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.76 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
78
79
80
81
82
83
84
85
86
87
{
"name": "react-progressive-media-loading",
"version": "1.0.13",
"description": "React progressive media loading",
"main": "lib/index.js",
"scripts": {
"build": "babel ./src/index.js --out-file ./lib/index.js && npm run build-css && npm run webpack-app",
"build-css": "webpack -p --config webpack.config.css.js && rm ./lib/app.bundle.js",
"prepublish": "npm run build",
"test": "babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha -- test/*.js",
"cover": "node_modules/.bin/babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha",
"coverage": "istanbul cover _mocha -- --ui bdd -R spec -t 5000;open ./coverage/lcov-report/index.html",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | node_modules/.bin/coveralls",
"dev": "webpack-dev-server --config webpack.config.dev.js --host ::",
"webpack-app": "webpack -p --config webpack.config.app.js",
"lint": "eslint ./src"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-istanbul": "^0.11.0",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"coveralls": "^2.13.1",
"css-loader": "^0.28.1",
"enzyme": "^2.6.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.0",
"expect": "^1.20.2",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"jsdom": "^9.8.3",
"jsdom-global": "^2.1.0",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"normalize.css": "^7.0.0",
"postcss": "^6.0.0",
"postcss-cssnext": "^2.10.0",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.3.3",
"pre-commit": "^1.2.2",
"prop-types": "^15.5.8",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"sinon": "^1.17.6",
"style-loader": "^0.17.0",
"webpack": "^2.5.0",
"webpack-dev-server": "^2.4.5"
},
"peerDependencies": {
"react": "^15.0.1",
"react-dom": "^15.0.1",
"prop-types": "^15.0.1"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"keywords": [
"react",
"progressive",
"media",
"loading",
"ui",
"component",
"components",
"util",
"utils"
],
"repository": "https://github.com/DavisChang/react-progressive-media-loading.git",
"author": "Davis Chang <[email protected]> (https://github.com/DavisChang)",
"license": "MIT",
"homepage": "https://github.com/DavisChang/react-progressive-media-loading",
"pre-commit": [
"lint",
"build"
]
}