forked from dazuaz/responsive-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.63 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
{
"name": "responsive-loader",
"version": "1.2.0-beta.1",
"description": "A webpack loader for responsive images",
"main": "lib/index.js",
"engines": {
"node": ">=4"
},
"scripts": {
"clean-test": "rm -f test/**/build/*.jpg test/**/build/*.png test/**/build/**/*.jpg test/**/build/**/*.png test/**/build/test.js",
"build": "babel src --out-dir lib",
"lint": "eslint --ignore-path=.gitignore .",
"test": "flow && yarn run build && yarn run clean-test && webpack --config=./test/jimp/webpack.config.js && webpack --config=./test/sharp/webpack.config.js && jest",
"shipit": "scripts/publish"
},
"files": [
"lib",
"jimp.js",
"sharp.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/herrstucki/responsive-loader.git"
},
"keywords": [
"webpack",
"responsive",
"loader",
"srcset"
],
"author": "Jeremy Stucki <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/herrstucki/responsive-loader/issues"
},
"homepage": "https://github.com/herrstucki/responsive-loader",
"dependencies": {
"loader-utils": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^20.0.3",
"babel-preset-env": "^1.1.6",
"babel-preset-flow": "^6.23.0",
"eslint": "^3.2.2",
"eslint-config-interactivethings": "^3.0.0",
"eslint-plugin-react": "^5.2.2",
"flow-bin": "^0.85.0",
"jest": "^20.0.4",
"jimp": "^0.2.21",
"sharp": "^0.23.4",
"webpack": "^3.1.0"
},
"jest": {
"testEnvironment": "node"
}
}