-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 815 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 815 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
27
28
29
30
{
"name": "mun-three-utils",
"version": "1.0.1",
"description": "Various utilities we use for three.js at MUN",
"main": "./distribution/index.js",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1"
},
"scripts": {
"build": "babel source --presets babel-preset-es2015 --out-dir distribution",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tothemun/mun-three-utils.git"
},
"keywords": [
"threejs"
],
"author": "Jonathan Blair <jon@tothemun.com> (http://tothemun.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tothemun/mun-three-utils/issues"
},
"homepage": "https://github.com/tothemun/mun-three-utils#readme",
"dependencies": {
"three": "^0.88.0"
}
}