-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.31 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.31 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
{
"name": "uke-chord-renderer",
"version": "0.1.0",
"description": "Ukulele chord renderer.",
"main": "index.js",
"dependencies": {
"@svgdotjs/svg.js": "^3.1.1",
"svgdom": "^0.1.10",
"typescript": "^4.5.4"
},
"devDependencies": {
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"commander": "^8.3.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"rimraf": "^3.0.2"
},
"scripts": {
"all": "node ./lib/index.js --all",
"all:vertical": "node ./lib/index.js --all --vertical",
"single": "node ./lib/index.js",
"single:vertical": "node ./lib/index.js --vertical",
"build": "npm run clean && mkdir -p ./dist && tsc -p .",
"clean": "rimraf ./lib ./dist",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/**/*.ts"
},
"repository": "git+https://github.com/pushback/uke-chord-renderer.git",
"keywords": [],
"author": "JhonSmith <jhonsmithworks@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pushback/uke-chord-renderer/issues"
},
"homepage": "https://github.com/pushback/uke-chord-renderer#readme"
}