This repository was archived by the owner on Jan 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.32 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.32 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "react-pic",
"version": "0.2.1",
"description": "React component for progressive and responsive image loading.",
"author": "Ben Budnevich",
"main": "dist/react-pic.cjs.js",
"module": "dist/react-pic.esm.js",
"umd": "dist/react-pic.umd.js",
"scripts": {
"build": "yarn build:prod && yarn build:dev",
"build:dev": "cross-env BUILD=development rollup -c",
"build:prod": "cross-env BUILD=production rollup -c",
"cleanup": "yarn cleanup:dist",
"cleanup:dist": "rimraf dist",
"dev-server": "webpack-dev-server --config webpack.config.dev.js --progress --colors",
"test": "jest",
"test:watch": "jest --watchAll",
"cover": "yarn test -- --coverage",
"coveralls": "cat coverage/lcov.info | coveralls",
"lint": "eslint ./src",
"start": "yarn npm-run-all -p playground dev-server",
"playground": "cross-env NODE_ENV=development nodemon --exec babel-node playground/server",
"prebuild": "yarn lint",
"prepublish": "yarn cleanup && yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/benox3/react-pic.git"
},
"keywords": [
"react",
"pic",
"picture",
"image",
"img",
"progressive",
"loading",
"responsive",
"universal"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/benox3/react-pic/issues"
},
"devDependencies": {
"babel-cli": "6.16.0",
"babel-core": "6.17.0",
"babel-eslint": "6.0.0",
"babel-jest": "^21.2.0",
"babel-loader": "6.2.5",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "3.5.0",
"core-js": "2.4.1",
"coveralls": "2.11.14",
"cross-env": "1.0.7",
"enzyme": "^2.4.1",
"enzyme-to-json": "^1.5.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"express": "4.14.0",
"jest": "^21.2.1",
"jest-snapshot": "^21.2.1",
"jsdom": "9.8.3",
"nodemon": "1.10.2",
"npm-run-all": "^4.1.1",
"react": "15.4.0",
"react-addons-shallow-compare": "15.4.0",
"react-addons-test-utils": "15.4.0",
"react-dom": "15.4.0",
"react-test-renderer": "15.4.0",
"rimraf": "2.5.4",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-pluginutils": "^2.0.1",
"sinon": "1.17.6",
"snapshot-diff": "^0.2.2",
"uglify-es": "^3.0.24",
"watch": "0.19.2",
"webpack": "^2.3.3",
"webpack-dev-server": "1.16.1"
},
"peerDependencies": {
"react": "0.14.x || ^15.0.0-0 || 15.x",
"react-addons-shallow-compare": "0.14.x || ^15.0.0-0 || 15.x"
},
"dependencies": {
"lodash": "^4.17.4",
"rollup-plugin-replace": "^2.0.0"
},
"jest": {
"setupTestFrameworkScriptFile": "./setupTestFramework",
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}