-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
53 lines (53 loc) · 1.45 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
{
"name": "scratch-audio",
"version": "1.0.311",
"description": "audio engine for scratch 3.0",
"main": "dist.js",
"browser": "./src/index.js",
"scripts": {
"build": "webpack --bail",
"lint": "eslint .",
"prepare": "husky install",
"tap": "tap test/effects/*.js test/*.js",
"test": "npm run lint && npm run tap && npm run build",
"watch": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scratchfoundation/scratch-audio.git"
},
"author": "Massachusetts Institute of Technology",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/scratchfoundation/scratch-audio/issues"
},
"homepage": "https://github.com/scratchfoundation/scratch-audio#readme",
"dependencies": {
"audio-context": "^1.0.1",
"minilog": "^3.0.1",
"startaudiocontext": "^1.2.1"
},
"devDependencies": {
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.3",
"babel-core": "6.26.3",
"babel-eslint": "10.1.0",
"babel-loader": "7.1.5",
"babel-preset-env": "1.7.0",
"eslint": "8.57.1",
"eslint-config-scratch": "9.0.9",
"husky": "8.0.3",
"json": "9.0.6",
"scratch-semantic-release-config": "1.0.16",
"semantic-release": "19.0.5",
"tap": "12.7.0",
"web-audio-test-api": "0.5.2",
"webpack": "4.47.0",
"webpack-cli": "3.3.12"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}