forked from thom4parisot/Imager.jsx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "imager.jsx",
"version": "1.1.3",
"description": "A React component for responsive images in desktop and mobile browsers. Featuring Imager.js.",
"main": "./src/imager.jsx",
"repository": {
"type": "git",
"url": "https://github.com/oncletom/Imager.jsx.git"
},
"scripts": {
"build": "npm run build-vendor && npm run build-bundle",
"build-vendor": "browserify -r react -o dist/vendor.js",
"build-bundle": "browserify -x react src/imager.jsx -s imager.jsx -o dist/bundle.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "watchify -x react src/imager.jsx -s imager.jsx -o dist/bundle.js"
},
"browserify": {
"transform": [
[
"reactify",
{
"es6": true,
"target": "es5"
}
]
]
},
"keywords": [
"imager",
"bbc",
"react",
"reactive",
"responsive",
"images"
],
"author": "Thomas Parisot (https://oncletom.io)",
"license": "MIT",
"dependencies": {
"imager.js": "^0.4.0",
"react": "^0.12.1"
},
"devDependencies": {
"browserify": "^6.3.2",
"reactify": "^0.17.1",
"watchify": "^2.1.1"
}
}