-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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": "musch",
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"type": "module",
"bin": {
"musch": "bin/musch.js"
},
"scripts": {
"start": "node \"./src/index.js\"",
"gen-docs": "node \"./src/gendocs/generate-doc.js\"",
"gen-tests": "node \"./src/gendocs/generate-tests-from-examples.js\"",
"serve-docs": "npx docsify-cli serve ./docs",
"check": "npx tsc --project ./.jsconfig --noEmit",
"lint": "npx eslint **/*.js",
"pretty": "npx prettier . --write",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage"
},
"files": [
"src"
],
"dependencies": {
"chalk": "^5.3.0",
"chokidar": "^3.5.3",
"commander": "^11.0.0",
"easymidi": "^3.1.0",
"euclidean-rhythms": "^3.1.1",
"seedrandom": "^3.0.5"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.15",
"@babel/plugin-syntax-import-assertions": "^7.22.5",
"@types/jest": "^29.5.5",
"eslint": "^8.49.0",
"eslint-plugin-jest": "^27.4.0",
"jest": "^29.7.0",
"jsdoc-api": "^8.0.0",
"jsdoc-parse": "^6.2.0",
"jsdoc-to-markdown": "^8.0.0",
"prettier": "3.0.3"
}
}