-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 901 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
{
"name": "abutils",
"version": "1.0.0",
"description": "utils for AudioBuffer",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch-src": "tsc --watch",
"watch-test": "esbuild ./test/test.ts --bundle --outfile=dist/test.js --watch",
"dev": "concurrently \"npm:watch-src\" \"npm:watch-test\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/alsotang/abutils.git"
},
"keywords": [
"audiobuffer",
"utils"
],
"author": "alsotang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alsotang/abutils/issues"
},
"homepage": "https://github.com/alsotang/abutils#readme",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.0",
"chai": "^4.3.7",
"concurrently": "^7.5.0",
"esbuild": "^0.15.14",
"mocha": "^10.1.0",
"typescript": "^4.9.3"
}
}