forked from msfeldstein/interactive-shader-format-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.79 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
55
56
57
58
59
60
61
62
63
{
"name": "interactive-shader-format",
"version": "2.8.0",
"description": "Rendering engine for Interactive Shader Format effects and generators",
"main": "src/main.js",
"directories": {
"example": "example"
},
"scripts": {
"build": "npx webpack",
"build-global": "browserify global.js -o build/isf.global.js",
"lint": "eslint src/**",
"examples": "budo examples/app.js -o -l --host=localhost -- -t brfs",
"examples-offscreen": "budo examples/app-offscreen.js --dir ./ -o -l --host=localhost -- -t brfs",
"prepublish": "npm run build",
"test": "node tests/run.js | tap-spec",
"watch-test": "nodemon tests/run.js | tap-spec"
},
"repository": {
"type": "git",
"url": "https://github.com/msfeldstein/interactive-shader-format-js.git"
},
"keywords": [
"Effects",
"FX",
"ISF",
"GLSL"
],
"author": "Michael Feldstein",
"license": "ISC",
"bugs": {
"url": "https://github.com/msfeldstein/ISF-JS-Renderer/issues"
},
"homepage": "https://github.com/msfeldstein/ISF-JS-Renderer",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.5",
"babelify": "^10.0.0",
"brfs": "^1.4.3",
"budo": "^8.3.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.0",
"get-pixels": "^3.3.0",
"gl": "^4.0.2",
"ndarray": "^1.0.18",
"ndarray-imshow": "^1.0.1",
"pixelmatch": "^4.0.2",
"rmdir": "^1.2.0",
"save-pixels": "^2.3.3",
"tap-spec": "^4.1.1",
"tape": "^4.9.1",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"mathjs-expression-parser": "^1.0.2"
}
}