-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.48 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
{
"name": "embedding",
"version": "0.3.0",
"description": "Embedding data into time and space",
"main": "src/main.js",
"scripts": {
"test": "mocha",
"build": "browserify --standalone EMBED -v -d -t [ babelify --presets [ es2015 ] ] src/main.js -o build/embedding.js && uglify -s build/embedding.js -o build/embedding.min.js",
"start": "watchify --standalone EMBED -v -d -t [ babelify --presets [ es2015 ] ] src/main.js -o docs/examples/js/embedding.js",
"build-docs": "jsdoc2md --files src/*.js > docs_src/docs/api.md && cd docs_src && mkdocs build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beaucronin/embedding.git"
},
"keywords": [
"VR",
"three.js",
"opengl"
],
"author": "Beau Cronin <beau.cronin@gmail.com> (https://github.com/beaucronin)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/beaucronin/embedding/issues"
},
"homepage": "https://github.com/beaucronin/embedding#readme",
"devDependencies": {
"babel-preset-es2015": "^6.16.0",
"mocha": "^3.0.2",
"watchify": "^3.7.0",
"babelify": "^7.3.0",
"uglify-js": "^2.7.5"
},
"dependencies": {
"chroma-js": "^1.2.1",
"lodash": "^4.17.4",
"object-assign": "^4.1.0",
"papaparse": "^4.1.2",
"query-string": "^4.2.3",
"ray-input": "beaucronin/ray-input",
"three": "^0.81.2",
"three-orbit-controls": "^72.0.0",
"tween.js": "^16.3.5",
"webvr-boilerplate": "beaucronin/webvr-boilerplate"
}
}