-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.49 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
{
"name": "@soundworks/plugin-checkin",
"version": "5.0.0",
"description": "soundworks plugin to assign a unique index to a client",
"authors": [
"Benjamin Matuszewski"
],
"license": "BSD-3-Clause",
"type": "module",
"exports": {
"./client.js": {
"module": "./src/ClientPluginCheckin.js",
"node": "./src/ClientPluginCheckin.js",
"types": "./types/ClientPluginCheckin.d.ts"
},
"./server.js": {
"module": "./src/ServerPluginCheckin.js",
"node": "./src/ServerPluginCheckin.js",
"types": "./types/ServerPluginCheckin.d.ts"
}
},
"scripts": {
"api": "npm run types && jsdoc-to-readme --src src/*.js",
"lint": "npx eslint src && npx eslint tests",
"preversion": "npm run lint && npm run test && npm run api && npm run toc && git commit -am 'docs: build' --allow-empty",
"test": "mocha tests/*.spec.js",
"toc": "markdown-toc -i README.md --maxdepth 2",
"types": "rm -rf types && tsc"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/collective-soundworks/soundworks-plugin-checkin"
},
"bugs": {
"url": "https://github.com/collective-soundworks/soundworks-plugin-checkin/issues"
},
"devDependencies": {
"@ircam/eslint-config": "^2.0.1",
"chai": "^5.1.2",
"jsdoc-to-readme": "^2.0.2",
"markdown-toc": "^1.2.0",
"mocha": "^11.1.0",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@soundworks/core": "^5.0.0"
}
}