-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.54 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.54 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
{
"author": "Kyle Krull",
"bin": {
"bambam-copy-chunks": "bin/copy-chunks",
"bambam-copy-tracks": "bin/copy-tracks",
"bambam-list-chunks": "bin/list-chunks",
"bambam-list-events": "bin/list-events",
"bambam-remap-events": "bin/remap-events"
},
"description": "Remaps notes in MIDI tracks",
"devDependencies": {
"@cucumber/cucumber": "^11.1.1",
"@cucumber/pretty-formatter": "^1.0.1",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@tsconfig/node18": "^18.2.4",
"@types/chai": "^4.3.6",
"@types/node": "^22.10.2",
"chai": "^4.3.10",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"markdownlint-cli2": "^0.17.0",
"npm-run-all": "^4.1.5",
"prettier": "3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"rimraf": "^5.0.10",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
},
"license": "MIT",
"main": "dist/index.js",
"name": "bambam",
"scripts": {
"build": "npm-run-all --sequential tsc tsc-alias",
"check": "npm-run-all --parallel eslint prettier:list-different tsc:no-emit",
"clean": "rimraf dist",
"cucumber": "cucumber-js -c features/cucumber.cjs",
"cucumber:focus": "cucumber-js -c features/cucumber.cjs --tags '@focus'",
"cucumber:format-html": "cucumber-js -c features/cucumber.cjs --format html:output/test-cucumberjs.html",
"eslint": "eslint features features/**/*.cjs src",
"eslint:fix": "eslint --fix features features/**/*.cjs src",
"prepare": "husky",
"prettier:list-different": "prettier --ignore-unknown --list-different .",
"prettier:write": "prettier --ignore-unknown --write .",
"test": "npm run cucumber",
"test:ci": "npm run cucumber:format-html",
"ts-node:copy-chunks": "ts-node -r tsconfig-paths/register src/main/copy-chunks.ts",
"ts-node:copy-tracks": "ts-node -r tsconfig-paths/register src/main/copy-tracks.ts",
"ts-node:list-chunks": "ts-node -r tsconfig-paths/register src/main/list-chunks.ts",
"ts-node:list-events": "ts-node -r tsconfig-paths/register src/main/list-events.ts",
"ts-node:remap-events": "ts-node -r tsconfig-paths/register src/main/remap-events.ts",
"tsc": "tsc -p tsconfig.json",
"tsc:no-emit": "tsc --noEmit -p tsconfig.json -p features/tsconfig.json",
"tsc:watch": "tsc --noEmit -p tsconfig.json -p features/tsconfig.json --watch",
"tsc-alias": "tsc-alias -p tsconfig.json"
},
"version": "0.0.1"
}