-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.83 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@ukegeeks/song-formatter",
"version": "0.0.3-alpha",
"description": "Convert ChordPro markup text to HTML with chord fingering diagrams",
"main": "./dist/song-formatter.bundle.js",
"type": "module",
"author": "B.Carter <buz@ukegeeks.com>",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/buzcarter/song-formatter.git"
},
"bugs": {
"url": "https://github.com/buzcarter/song-formatter/issues"
},
"homepage": "https://github.com/buzcarter/song-formatter#readme",
"scripts": {
"build": "npm run build:clean && npm run build:js && npm run build:css",
"build:clean": "rimraf dist .tmp",
"build:js": "webpack --mode production",
"build:css": "webpack --config webpack.config.css.cjs --mode production",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:ts": "eslint . --ext .ts",
"start": "webpack --mode development --watch",
"test": "jest --silent --config ./jest.config.cjs",
"test:watch": "npm test -- --watch",
"test:cover": "npm test -- --coverage"
},
"keywords": [
"chordpro",
"chord",
"diagrams",
"music",
"markup",
"songsheet",
"song",
"converter",
"ukulele",
"uke"
],
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/jquery": "^3.5.18",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.0",
"jest": "^29.6.2",
"mini-css-extract-plugin": "^2.7.6",
"ts-loader": "^9.0.1",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^5.1.4"
}
}