-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 loc) · 1.14 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
{
"name": "glmw",
"version": "0.1.3",
"description": "WebAssembly powered Matrix and Vector library",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/maierfelix/glmw.git"
},
"main": "dist/glmw-node.js",
"module": "dist/glmw-node.es.js",
"keywords": [
"matrix",
"vector",
"webgl",
"webassembly",
"wasm"
],
"homepage": "http://maierfelix.github.io/glmw/",
"author": "Felix Maier <xilefmai@gmail.com>",
"contributors": [
"Felix Maier <xilefmai@gmail.com> (https://github.com/maierfelix)"
],
"bugs": {
"url": "https://github.com/maierfelix/glmw/issues"
},
"engines": {
"node": ">= 6.x"
},
"scripts": {
"dist": "npm run browser && npm run build",
"build": "rollup -c rollup/rollup.config.cjs.js && rollup -c rollup/rollup.config.es.js",
"browser": "node rollup/rollup.bundle.js"
},
"devDependencies": {
"rollup": "^0.47.2",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.1.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"webassembly": "^0.11.0"
},
"dependencies": {}
}