-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
31 lines (31 loc) · 887 Bytes
/
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
{
"name": "webgl-math",
"version": "1.1.0",
"description": "A Mathematics Library for WebGL",
"main": "index.js",
"scripts": {
"build": "rollup -c",
"test": "jest",
"test-watchAll": "jest --watchAll",
"test-vector": "jest vector",
"test-matrix": "jest matrix",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cevherkarakoc/WebGL-Math.git"
},
"author": "cevherkarakoc <[email protected]> (https://github.com/cevherkarakoc)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cevherkarakoc/WebGL-Math/issues"
},
"homepage": "https://github.com/cevherkarakoc/WebGL-Math#readme",
"devDependencies": {
"jest": "^25.1.0",
"rollup": "^2.1.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.2",
"rollup-plugin-terser": "^5.3.0"
}
}