forked from TurboWarp/scratch-audio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "scratch-audio",
"version": "0.1.0",
"description": "audio engine for scratch 3.0",
"main": "dist.js",
"browser": "./src/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"test": "npm run lint && npm run tap && npm run build",
"build": "webpack --bail",
"watch": "webpack --watch",
"lint": "eslint .",
"tap": "tap test/effects/*.js test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TurboWarp/scratch-audio.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/TurboWarp/scratch-audio/issues"
},
"homepage": "https://github.com/TurboWarp/scratch-audio#readme",
"tap": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
},
"dependencies": {
"@turbowarp/nanolog": "^0.2.0",
"@turbowarp/startaudiocontext": "^1.0.0"
},
"devDependencies": {
"babel-core": "6.26.3",
"babel-eslint": "10.1.0",
"babel-loader": "7.1.5",
"babel-preset-env": "1.7.0",
"eslint": "8.0.1",
"eslint-config-scratch": "9.0.3",
"json": "9.0.6",
"tap": "^16.3.10",
"web-audio-test-api": "0.5.2",
"webpack": "4.47.0",
"webpack-cli": "3.3.12"
}
}