-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.85 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
64
65
66
67
{
"name": "glsl-rfft",
"version": "1.0.2",
"description": "GLSL setup for performing a Fast Fourier Transform of real-valued input",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "budo example/index.js --force-default-index --dir docs --open --host localhost --live -- -t glslify -t es2040 -t brfs",
"build": "browserify example/index.js -t glslify -t es2040 -t brfs -t [ envify --NODE_ENV production ] | uglifyjs -cm | indexhtmlify | html-inject-meta | html-inject-github-corner > docs/index.html",
"deps": "dependency-check package.json",
"test": "npm run deps && node test/test.js",
"test-browser": "browserify test/*.js | testling -x open"
},
"keywords": [
"webgl",
"glsl",
"glslify",
"fft",
"fourier",
"transform",
"spectrum"
],
"author": "Ricky Reusser",
"license": "MIT",
"devDependencies": {
"almost-equal": "^1.1.0",
"bankai": "^9.0.0-rc9",
"brfs": "^1.4.3",
"budo": "^10.0.4",
"dependency-check": "^2.9.1",
"envify": "^4.1.0",
"es2040": "^1.2.6",
"fail-nicely": "^2.0.0",
"glsl-noise": "0.0.0",
"glslify": "^6.1.0",
"h": "^0.1.0",
"html-inject-github-corner": "^2.0.0",
"html-inject-meta": "^3.0.0",
"indexhtmlify": "^1.3.1",
"insert-css": "^2.0.0",
"iota-array": "^1.0.0",
"is-mobile": "^0.2.2",
"is-power-of-two": "^1.0.0",
"ndarray": "^1.0.18",
"ndarray-fft": "^1.0.3",
"ndarray-ops": "^1.2.2",
"ndarray-scratch": "^1.2.0",
"ndarray-show": "^2.0.0",
"ndarray-tests": "^1.3.0",
"phantomjs": "^2.1.7",
"regl": "^1.3.0",
"resl": "^1.0.3",
"tap-spec": "^4.1.1",
"testling": "^1.7.1",
"uglify-js": "^3.1.6"
},
"browserify": {
"transform": [
"glslify"
]
},
"github-corner": {
"url": "https://github.com/rreusser/glsl-rfft"
}
}