-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
40 lines (40 loc) · 1.21 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
{
"name": "fft.js",
"version": "4.0.4",
"description": "Insanely Fast Fourier Transform (radix-4)",
"main": "lib/fft.js",
"types": "lib/fft.d.ts",
"scripts": {
"format": "eslint --fix lib/*.js test/*.js bench/index.js",
"lint": "eslint lib/*.js test/*.js bench/index.js",
"bench": "cd bench && npm install && node .",
"types": "npx typescript lib/fft.js --declaration --allowJs --emitDeclarationOnly --outDir lib\n",
"build": "webpack --progress --colors -p --output-library FFTJS",
"test": "mocha --reporter=spec test/*-test.js && npm run lint",
"version": "npm run build && git add dist/"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/indutny/fft.js.git"
},
"keywords": [
"fft",
"fourier"
],
"author": "Fedor Indutny <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/indutny/fft.js/issues"
},
"homepage": "https://github.com/indutny/fft.js#readme",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.4.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"eslint": "^3.17.0",
"fft": "^0.2.1",
"mocha": "^8.2.1",
"webpack": "^2.2.1"
}
}