-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
36 lines (36 loc) · 878 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
32
33
34
35
36
{
"name": "fftw-js",
"version": "0.1.4",
"description": "Javascript port of FFTW via Emscripten",
"main": "src/main.js",
"scripts": {
"build": "cd src && make clean -f Makefile.emscripten && make -f Makefile.emscripten",
"build:web": "node --max-old-space-size=8192 ./node_modules/.bin/webpack --config webpack.config.js",
"test": "mocha --full-trace"
},
"repository": {
"type": "git",
"url": "git@github.com:j-funk/fftw-js"
},
"engines": {
"node": ">=4.4.7"
},
"keywords": [
"FFT",
"DSP",
"fast-fourier-transform",
"digital-signal-processing",
"FFTW"
],
"devDependencies": {
"@babel/core": "^7.2.2",
"babel-loader": "^8.0.5",
"chai": "*",
"file-loader": "^3.0.1",
"mocha": "*",
"wasm-loader": "^1.3.0",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
},
"license": "GPL"
}