-
Notifications
You must be signed in to change notification settings - Fork 160
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "web-audio-daw",
"version": "4.13.2",
"description": "Web Audio DAW. It's like jQuery for your ears.",
"main": "build/wad.js",
"scripts": {
"build": "npm run build-compressed && npm run build-uncompressed && npm run build-tests",
"build-uncompressed": "webpack --config webpack.config.js",
"build-compressed": "webpack --config webpack.config.min.js",
"build-tests": "webpack --config webpack.config.test.js",
"watch": "./node_modules/watch/cli.js 'npm run build' .",
"lint": "./node_modules/eslint/bin/eslint.js --fix ./src",
"test": "npx http-server ./test",
"generate-types": "npx tsc"
},
"types": "types/main.js",
"repository": {
"type": "git",
"url": "https://github.com/rserota/wad.git"
},
"keywords": [
"Web",
"Audio",
"API",
"MIDI",
"DAW",
"HTML5",
"Wad"
],
"author": "Raphael Serota",
"license": "MIT",
"bugs": {
"url": "https://github.com/rserota/wad/issues"
},
"devDependencies": {
"eslint": "^7.3.1",
"typescript": "^4.7.4",
"watch": "^1.0.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"lodash": "^4.17.21",
"tunajs": "^1.0.8"
}
}