forked from Stanko/react-image-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·70 lines (70 loc) · 2.36 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
{
"name": "react-image-filter",
"version": "0.1.2",
"private": false,
"license": "MIT",
"main": "lib/index.js",
"description": "Lightweight React component, for applying color filters on images, works in all modern browsers plus IE10+ and Edge.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server",
"build": "rm -rf ./lib && NODE_ENV=\"production\" babel ./source --out-dir ./lib",
"build-docs": "rm -rf ./dist-docs && EXAMPLE=\"true\" NODE_ENV=\"production\" webpack",
"publish-to-npm": "npm run build && npm publish",
"publish-docs": "sh publish-docs.sh",
"publish-all": "npm run publish-to-npm && npm run publish-docs",
"lint-break-on-errors": "eslint ./source/js ./webpack.config.js -f table --ext .js --ext .jsx",
"lint": "eslint ./source/js ./webpack.config.js -f table --ext .js --ext .jsx || true",
"preview": "rm -rf ./dist && NODE_ENV=\"production\" webpack-dev-server"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.7.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-runtime": "^6.6.1",
"css-loader": "^0.28.4",
"eslint": "^3.10.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.24.1",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"sass-loader": "^6.0.5",
"style-loader": "^0.18.2",
"uglify-js": "^2.8.29",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.2.1"
},
"dependencies": {
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": ">=15.6.2",
"react-dom": ">=15.6.2"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Stanko/react-image-filter.git"
},
"keywords": [
"react",
"filter",
"invert"
],
"author": "Stanko",
"bugs": {
"url": "https://github.com/Stanko/react-image-filter/issues"
},
"homepage": "https://github.com/Stanko/react-image-filter#readme"
}