This repository was archived by the owner on Jun 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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
{
"name": "wirtual",
"version": "0.0.1",
"description": "Building blocks of VR web.",
"main": "dist/wirtual.js",
"scripts": {
"start": "npm run build",
"build": "rm -rf dist/; webpack --progress --colors --mode=build; grunt attach-vendors; grunt serve;",
"dev": "webpack --progress --colors --watch --mode=dev",
"test": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js",
"demo": "cp dist/wirtual.js demo/; mv demo/wirtual.js demo/wirtual-$(date +%d-%b-%Y_%H-%M-%S).js;"
},
"devDependencies": {
"babel": "6.3.13",
"babel-core": "6.1.18",
"babel-eslint": "5.0.0",
"babel-loader": "6.1.0",
"babel-plugin-add-module-exports": "0.1.2",
"babel-preset-es2015": "6.3.13",
"bootstrap": "^3.3.7",
"chai": "3.4.1",
"clean-webpack-plugin": "^0.1.13",
"eslint": "1.7.2",
"eslint-loader": "1.1.0",
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-watch": "^1.0.0",
"jquery": "^3.1.1",
"mocha": "2.3.4",
"webpack": "1.12.9",
"yargs": "3.32.0"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"virtual",
"virtual reality",
"building blocks",
"3d websites"
],
"author": "Oguz Gelal",
"license": "MIT",
"dependencies": {
"three": "^0.82.1",
"webvr-boilerplate": "^0.4.9"
}
}