-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 887 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 887 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
31
32
{
"name": "holoweb.js",
"version": "0.1.0",
"description": "Hologram Web Framework",
"main": "index.js",
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server --config default.config.js --port 8000 --env.debug --watch",
"build:dev": "webpack --config default.config.js",
"build:prod": "NODE_ENV=production webpack -p --config default.config.js",
"test": "webpack test/bootstrap.js tmp/testBundle.js --target node && node_modules/mocha/bin/mocha tmp/testBundle.js"
},
"keywords": [
"hologram",
"holoweb",
"3d"
],
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
},
"author": "Nemlaghi Bechir",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"mocha": "^4.0.1",
"should": "^13.1.3",
"three": "^0.89.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3"
}
}