forked from poki/three-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 743 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 743 Bytes
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
{
"name": "@poki/three-ui",
"version": "0.0.3",
"author": "Kasper Mol <kasper@poki.com>",
"description": "UI system for Three.JS",
"license": "MIT",
"scripts": {
"build": "npm-run-all build:*",
"build:cleanup": "rm -rf lib",
"build:webpack": "webpack",
"build:examples": "cpx 'examples/**/*' dist",
"build:examplesLib": "cpx 'lib/**/*' dist",
"watch": "npm-run-all --parallel watch:*",
"watch:cleanup": "rm -rf lib",
"watch:webpack": "webpack --watch",
"watch:examples": "cpx 'examples/**/*' dist --watch",
"watch:examplesLib": "cpx 'lib/**/*' dist --watch"
},
"devDependencies": {
"cpx": "^1.5.0",
"npm-run-all": "^4.0.2",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^2.6.1"
},
"dependencies": {}
}