forked from s-yadav/iv-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.7 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
{
"name": "iv-viewer",
"version": "2.0.0",
"description": "A zooming and panning plugin inspired by google photos for your web images.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/s-yadav/iv-viewer.git"
},
"keywords": [
"image",
"zooming",
"panning",
"google",
"photos"
],
"author": "Sudhanshu Yadav",
"license": "MIT",
"bugs": {
"url": "https://github.com/s-yadav/iv-viewer/issues"
},
"homepage": "https://github.com/s-yadav/iv-viewer#readme",
"scripts": {
"start": "yarn copy-assets & parcel example/index.html --out-dir temp",
"copy-assets": "cp -R example/ temp",
"bundle": "cross-env yarn compile & yarn build-css & yarn bundle-dist",
"bundle-dist": "cross-env rollup -c rollup.config.js",
"build-css": "node build-css.js",
"compile": "cross-env NODE_ENV=production babel src --out-dir lib"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-eslint": "^9.0.0",
"cross-env": "^5.2.0",
"cssnano": "^4.1.10",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"parcel-bundler": "^1.11.0",
"rollup": "^1.4.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-filesize": "^6.0.1",
"rollup-plugin-license": "^0.8.1",
"rollup-plugin-uglify": "^6.0.2",
"sass": "^1.17.0"
}
}