-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 981 Bytes
/
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
{
"name": "drag-controls",
"version": "1.0.4",
"author": "jbyte",
"license": "MIT",
"main": "dist/drag-controls.js",
"jsnext:main": "dist/drag-controls.module.js",
"module": "dist/drag-controls.module.js",
"repository": "jbyte/three-dragcontrols",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.7",
"rollup-watch": "^4.3.1",
"uglify-js": "^3.5.3"
},
"scripts": {
"dev": "rollup --config",
"watch": "npm run dev --watch",
"prod": "rollup --config && uglifyjs dist/drag-controls.js -cm --premble \"/*!\n * drag-controls\n * https://github.com/jbyte/three-dragcontrols\n * (c) 2018 @jbyte\n * Released under the MIT license.\n */\"> dist/drag-controls.min.js"
},
"keywords": [
"three",
"three.js",
"drag",
"controls",
"DragControls"
]
}