-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1017 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": "ts-audio-buffer-utils",
"version": "1.0.0",
"description": "Typescript utility functions for AudioBuffers",
"main": "dist/index.js",
"author": "Roland Zwaga <rbzwaga@gmail.com>",
"license": "MIT",
"keywords": [
"web",
"audio",
"buffer",
"web audio",
"audio-buffer",
"typescript"
],
"scripts": {
"build": "tsc -b",
"test": "karma start",
"d": "ts-node --project tools/tsconfig.json tools/generate-readme",
"docs": "typedoc --json docs.json --exclude \"src/+(test|helper)/**/*.*\" && ts-node tools/generate-readme && typedoc --exclude \"src/+(test|helper)/**/*.*\""
},
"devDependencies": {
"@types/jasmine": "3.6.2",
"@types/node": "14.14.12",
"jasmine-core": "3.6.0",
"karma": "5.2.3",
"karma-chrome-launcher": "3.1.0",
"karma-cli": "2.0.0",
"karma-jasmine": "4.0.1",
"karma-spec-reporter": "0.0.32",
"karma-typescript": "5.2.0",
"ts-node": "9.1.1",
"typescript": "4.1.3"
},
"dependencies": {}
}