chordsong
Version:
ChordSong is a simple text format for the notation of lyrics with guitar chords, and an application that renders them to portable HTML pages.
47 lines (46 loc) • 1.23 kB
JSON
{
"name": "chordsong",
"version": "1.1.0",
"description": "ChordSong is a simple text format for the notation of lyrics with guitar chords, and an application that renders them to portable HTML pages.",
"keywords": [
"music",
"chords",
"lyrics",
"guitar",
"diagram"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "for file in examples/*.txt; do ./dist/chordsong.js \"$file\"; done",
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 src/**/*.{html,css,svg} dist/",
"prebuild": "npm run clean",
"build": "tsc",
"postbuild": "npm run copy-files && chmod +x ./dist/chordsong.js",
"lint": "ts-standard --fix"
},
"bin": "./dist/chordsong.js",
"author": {
"name": "Juan Hernández Serrano",
"email": "j.hernandez@upc.edu",
"url": "https://github.com/juanelas"
},
"repository": "github:juanelas/chordsong",
"license": "MIT",
"devDependencies": {
"copyfiles": "^2.4.1",
"rimraf": "^5.0.1",
"ts-standard": "^12.0.2",
"typescript": "^5.1.3"
},
"ts-standard": {
"ignore": [
"/dist/"
]
},
"dependencies": {
"@types/node": ">12.0.0",
"commander": "^10.0.1"
}
}