-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.19 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
{
"name": "@soundworks/plugin-logger",
"version": "2.0.0-alpha.4",
"description": "soundworks plugin for recording arbitrary data into files",
"authors": [
"Benjamin Matuszewski"
],
"license": "BSD-3-Clause",
"type": "module",
"exports": {
"./client.js": "./src/PluginLoggerClient.js",
"./server.js": "./src/PluginLoggerServer.js"
},
"scripts": {
"api": "jsdoc-to-readme --src src/*.js",
"preversion": "npm run api && npm run toc && git commit -am 'docs: build' --allow-empty",
"test": "mocha",
"toc": "markdown-toc -i README.md --maxdepth 3"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/collective-soundworks/soundworks-plugin-logger"
},
"bugs": {
"url": "https://github.com/collective-soundworks/soundworks-plugin-logger/issues"
},
"homepage": "https://soundworks.dev",
"dependencies": {
"@ircam/sc-utils": "^1.1.1",
"@sindresorhus/slugify": "^2.2.1",
"short-unique-id": "^4.4.4"
},
"devDependencies": {
"@soundworks/core": "^4.0.0-alpha.7",
"chai": "^4.3.6",
"jsdoc-to-readme": "^1.1.0",
"markdown-toc": "^1.2.0",
"mocha": "^10.1.0"
}
}