-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "@generative-music/fs-provider",
"version": "2.0.0",
"description": "An audio sample file provider for Node",
"main": "lib/create-provider.js",
"scripts": {
"test": "mocha lib --recursive",
"test:watch": "npm test -- --watch",
"lint": "eslint .",
"preversion": "npm run lint && npm test",
"postversion": "git push && git push --tags"
},
"files": [
"lib/!(*.spec).js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/generative-music/fs-provider.git"
},
"author": "Alex Bainter <alex@alexbainter.com> (https://alexbainter.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/generative-music/fs-provider/issues"
},
"homepage": "https://github.com/generative-music/fs-provider#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.2.0",
"eslint-config-metalex9": "^0.4.0",
"file-type": "^16.0.0",
"mocha": "^8.2.0",
"mock-fs": "^4.13.0",
"prettier": "^2.0.5"
},
"dependencies": {
"audiobuffer-to-wav": "^1.0.0"
}
}