-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 2.05 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
{
"name": "piper-js",
"version": "0.21.2",
"description": "Piper is a protocol for driving audio feature extractors. This library provides ways of implementing clients and servers in JavaScript for the Piper protocol.",
"main": "./dist/piper.bundle.js",
"typings": "./index.d.ts",
"scripts": {
"test": "mocha test/*Test.ts --require ts-node/register",
"timings": "mocha perf/*.ts --require ts-node/register",
"profile": "npm run timings && node --prof-process $(ls -1tr isolate*.log | tail -1) > profile.txt",
"build": "tsc && cp src/fft/KissFft*.js dist/ts/src/fft",
"build-src-only": "tsc -p ./tsconfig.src.json && cp src/fft/KissFft*.js dist/ts/fft",
"clean": "rm -rf fft *.js *.js.map *.d.ts dist/ts extractors client-stubs fft protocols servers clients ext",
"move-dist-to-root": "cp -r dist/ts/* . && cp -rf src/ext ext",
"clean-build-src-only": "rm -rf dist/ts",
"prepare": "npm run bundle && npm run move-dist-to-root && npm run clean-build-src-only",
"cover": "nyc npm t",
"coveralls": "npm run clean && npm run cover && cat ./coverage/lcov.info | coveralls",
"bundle": "npm run build-src-only && webpack --config ./dist/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:piper-audio/piper-js.git"
},
"keywords": [
"feature-extraction",
"audio",
"web-audio",
"features",
"mir"
],
"author": "Lucas Thompson",
"license": "ISC",
"homepage": "https://github.com/piper-audio/piper-js",
"dependencies": {
"@types/base64-js": "^1.2.5",
"base64-js": "^1.2.0",
"rxjs": "^5.4.2"
},
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/chai-as-promised": "^0.0.31",
"@types/mocha": "^2.2.41",
"@types/node": "^6.0.73",
"chai": "^4.0.0",
"chai-as-promised": "^7.0.0",
"coveralls": "^2.13.1",
"mocha": "^3.3.0",
"nyc": "^10.3.2",
"tiny-worker": "^2.1.1",
"ts-node": "^3.2.0",
"tv4": "^1.3.0",
"typescript": "^2.4.1",
"uglifyjs-webpack-plugin": "^1.0.0-beta.2",
"webpack": "^3.3.0"
}
}