-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
30 lines (30 loc) · 881 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
{
"name": "audio-effects",
"version": "1.2.4",
"description": "A javascript library to create audio effects using the web-audio-api",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/es6-promise": "0.0.32",
"@types/webaudioapi": "0.0.27",
"@types/webrtc": "0.0.21",
"@types/whatwg-fetch": "0.0.32",
"typescript": "^2.0.10"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepublish": "npm run build",
"postversion": "git push; git push --tags; npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sambego/audio-effects.git"
},
"author": "Sam Bellen",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sambego/audio-effects/issues"
},
"homepage": "https://github.com/Sambego/audio-effects#readme"
}