-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
42 lines (42 loc) · 999 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
37
38
39
40
41
42
{
"name": "jsfft",
"version": "0.0.4",
"author": "Nick Jones",
"description": "A lightweight FFT implementation for Javascript",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dntj/jsfft.git"
},
"engines": {
"node": ">=4.0.0"
},
"main": "./dist/fft",
"scripts": {
"start": "webpack-dev-server",
"build": "babel -d dist/ lib/; webpack example/index.js",
"clean": "rm -rf dist",
"prepublish": "npm run build",
"test": "mocha --compilers js:babel-register"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"mocha": "^5.2.0",
"webpack": "^2.7.0",
"webpack-dev-server": "^3.1.14"
},
"bugs": {
"url": "https://github.com/dntj/jsfft/issues"
},
"homepage": "https://github.com/dntj/jsfft#readme",
"directories": {
"example": "example",
"test": "test"
},
"files": [
"dist"
],
"dependencies": {}
}