-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 2.01 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 2.01 KB
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
{
"name": "web-assembly-opengl",
"version": "1.0.0",
"description": "- Follow the steps [here](http://webassembly.org/getting-started/developers-guide/) to get ready to comile WebAssembly - Clone this directory wherever you want (`git clone \"https://github.com/HarryLovesCode/WebAssembly-WebGL-2\"`) - `cd` to the root of the newly cloned directory - Use the makefile to either build, clean up, or make a distribution version (build directory only) of the repo - Build: `make` - Clean: `make clean` - Build, but remove objects leaving the `build` dir: `make dist` - You can then use `python -m SimpleHTTPServer 8080` or `http-server build/` and open your browser to `localhost:8080`.",
"main": "index.js",
"scripts": {
"webIDL": "python ~/emsdk/emscripten/incoming/tools/webidl_binder.py WebAssemblyDemo/Bindings/bindings.idl WebAssemblyDemo/Bindings/glue",
"cmake": "rm -rf build && mkdir build && cd build && cmake .. && cd ..",
"compile": "make",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist/ && make clean",
"build": "webpack",
"production": "webpack -p",
"start": "webpack-dev-server --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/1337programming/WebAssemblyOpenGL.git"
},
"author": "Patrick Opie <opiepat@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/1337programming/WebAssemblyOpenGL/issues"
},
"homepage": "https://github.com/1337programming/WebAssemblyOpenGL#readme",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^2.1.2",
"html-webpack-plugin": "^2.29.0",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"wasm-loader": "^1.0.0",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.0",
"worker-loader": "^0.8.0"
}
}