-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·35 lines (35 loc) · 880 Bytes
/
package.json
File metadata and controls
executable file
·35 lines (35 loc) · 880 Bytes
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
{
"name": "web-dsp",
"version": "0.0.10",
"description": "A dsp library for the web, written with WebAssembly",
"main": "test.js",
"scripts": {
"test": "npm run testCPP",
"testCPP": "g++ ./test/test.cpp -o ./test/testCpp && ./test/testCpp",
"testJS": "mocha || true",
"compile": "echo \"compiling C/C++ to WASM\" && node compile.js"
},
"bin": {
"get-dsp": "./bin/get-dsp.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shamadee/web-dsp.git"
},
"author": "shamadee",
"license": "ISC",
"bugs": {
"url": "https://shamadee/web-dsp/issues"
},
"homepage": "https://github.com/shamadee/web-dsp#readme",
"devDependencies": {
"browser-sync": "^2.18.8",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"zombie": "^5.0.5"
},
"dependencies": {
"fs-extra": "^2.1.2",
"path": "^0.12.7"
}
}