-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.23 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
{
"name": "@vivid-planet/react-image",
"version": "1.3.0",
"description": "Image component with loading animation for react",
"main": "./lib/index.js",
"typings": "./index.d.ts",
"scripts": {
"scss": "node-sass --output-style expanded --recursive scss/default.scss dist/react-image.css",
"build": "babel src --presets=es2015,react --plugins transform-object-rest-spread --out-dir lib",
"clean": "rm -rf lib && rm -rf dist",
"prepublish": "npm run clean && npm run build && npm run scss"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vivid-planet/react-image.git"
},
"peerDependencies": {
"react": "^15.6.1 || ^16.0.0",
"prop-types": "^15.6.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"node-sass": "^4.9.2"
},
"keywords": [
"react",
"reactjs",
"img",
"image",
"loading"
],
"author": "Alexander Kaufmann <[email protected]>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/vivid-planet/react-image/issues"
},
"homepage": "https://github.com/vivid-planet/react-image#readme"
}