-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "regl-line-builder",
"version": "0.8.2",
"description": "Draw pretty lines in WebGL with the Canvas2D API.",
"main": "dist/regl-line-builder.js",
"module": "dist/regl-line-builder.module.js",
"scripts": {
"start": "sh ./scripts/start.sh",
"build": "npm run build-dist && npm run build-minify",
"build-dist": "sh ./scripts/build-dist.sh",
"build-test": "sh ./scripts/build-dist.sh --watch",
"build-minify": "sh ./scripts/build-minify.sh",
"test": "npm run test-lint && npm run test-unit",
"test-lint": "sh ./scripts/test-lint.sh",
"test-unit": "sh ./scripts/test-unit.sh"
},
"author": "Jay Weeks <[email protected]> (https://jayweeks.com)",
"license": "MIT",
"keywords": [
"webgl",
"regl"
],
"repository": {
"type": "git",
"url": "git://github.com/microbium/regl-line-builder.git"
},
"devDependencies": {
"@jpweeks/rollupify": "^0.4.0",
"@jpweeks/rstats": "^1.2.0",
"@shotamatsuda/rollup-plugin-glslify": "^0.1.2",
"budo": "^11.3.2",
"eslint": "^5.5.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"gl": "^4.0.4",
"regl": "^1.3.7",
"rollup": "^0.65.2",
"rollup-plugin-cleanup": "^3.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.9.1",
"uglify-es": "^3.3.9"
},
"peerDependencies": {
"gl-matrix": "^3.0.0"
},
"dependencies": {
"earcut": "^2.1.5"
}
}