forked from alanmacleod/wasm-render
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.31 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
52
53
54
{
"name": "wasm-render",
"version": "0.0.1",
"description": "Software rasteriser written in WASM/C & TypeScript to test WebAssembly and compare performance",
"main": "main.js",
"scripts": {
"test": "npm run test",
"wasm-init": "wasm-init",
"compile": "wasm-compile",
"build": "webpack",
"watch": "webpack -w",
"prebuildall": "wasm-compile",
"buildall": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alanmacleod/wasm-render.git"
},
"keywords": [
"wasm",
"js",
"c",
"rasterisation",
"rasterization",
"renderer",
"3d",
"webassembly",
"javascript"
],
"author": "Alan MacLeod",
"license": "MIT",
"bugs": {
"url": "https://github.com/alanmacleod/wasm-render/issues"
},
"homepage": "https://github.com/alanmacleod/wasm-render#readme",
"dependencies": {
"babel-core": "^6.18.2",
"parse-obj": "0.0.0"
},
"devDependencies": {
"ava": "^0.19.1",
"awesome-typescript-loader": "^3.1.3",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babili-webpack-plugin": "^0.0.11",
"should": "^11.2.1",
"source-map-loader": "^0.2.1",
"typescript": "^2.3.2",
"wasm-init": "0.0.38",
"wasm-loader": "^1.0.0",
"webpack": "^2.5.1"
}
}