-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
63 lines (63 loc) · 1.75 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
60
61
62
63
{
"name": "magnify-3d",
"version": "1.0.4",
"description": "Real time optic magnifying glass library.",
"main": "build/Magnify3d.js",
"scripts": {
"dev": "./node_modules/.bin/webpack-dev-server --config ./webpack.config.sample --devtool source-map --progress --hot --mode=development --host 0.0.0.0",
"build": "rm -rf ./build && cross-env NODE_ENV=rollup rollup -c",
"build-sample": "NODE_ENV=production webpack --progress --config ./webpack.config.sample --mode=production",
"deploy-sample": "npm run build-sample && gh-pages -d build/sample"
},
"author": "Amit Diamant",
"repository": {
"type": "git",
"url": "https://github.com/amitdiamant/magnify-3d"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "6.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^5.0.0",
"cross-env": "2.0.1",
"dat.gui": "^0.7.5",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"npm-run-all": "4.0.1",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-glsl": "^1.3.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"webpack": "4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-glsl-loader": "1.0.1",
"three": "^0.92.0"
},
"peerDependencies": {
"three": "^0.92.0"
},
"files": [
"package.json",
"LICENSE",
"README.md",
"build/Magnify3d.js",
"src",
"webpack.config.sample.js"
],
"keywords": [
"magnify",
"magnify-3d",
"magnifying",
"magnifying glass",
"zoom",
"optic",
"3d",
"webgl"
]
}