-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 848 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 848 Bytes
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
{
"name": "paraff",
"version": "1.0.0",
"description": "**PARAFF** is a sheet music domian-specific language, designed for algorithmic musical composition.",
"source": "./index.ts",
"scripts": {
"postinstall": "ts-node ./tools/buildJisonParser.ts",
"test": "ts-node ./tests/parser.ts",
"ts": "ts-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FindLab-org/paraff.git"
},
"author": "k.l.lambda",
"license": "ISC",
"homepage": "https://github.com/FindLab-org/paraff#readme",
"dependencies": {
"typescript": "^5.3.3",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/node": "^20.11.20",
"@types/yargs": "^17.0.32",
"jison": "^0.4.18",
"lotus": "git+ssh://git@github.com:k-l-lambda/lotus.git#f64031f",
"ts-node": "^10.9.2",
"yargs": "^17.7.2"
}
}