-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "gl-noise",
"version": "1.6.1",
"description": "A collection of GLSL noise functions for use with WebGL with an easy to use API.",
"main": "build/glNoise.m.node.js",
"type": "module",
"types": "build/glNoise.d.ts",
"scripts": {
"build": "rollup -c && rm -rf build/types && chmod +x scripts/patchModule.sh && scripts/patchModule.sh",
"test": "ava",
"doc": "chmod +x scripts/doc.sh && scripts/doc.sh"
},
"keywords": [
"glsl",
"shader",
"webgl",
"noise"
],
"author": "Faraz Shaikh",
"license": "MIT",
"files": [
"build/*",
"README.md",
"package.json"
],
"devDependencies": {
"@types/node": "^15.0.3",
"@types/node-fetch": "^2.5.10",
"ava": "^3.15.0",
"better-docs": "^2.3.2",
"jsdoc": "^3.6.7",
"ogl": "0.0.73",
"rollup": "^2.46.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-glslify": "^1.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"ava": {
"files": [
"tests/**/*"
]
}
}