-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.12 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
{
"name": "@ukegeeks/ace-chordpro-extension",
"version": "0.0.3-alpha",
"description": "ChordPro song editing extension for Ace Editor",
"author": "B.Carter <[email protected]>",
"license": "GPL-3.0-or-later",
"main": "./dist/ace-chordpro.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/buzcarter/ace-chordpro-extension.git"
},
"bugs": {
"url": "https://github.com/buzcarter/ace-chordpro-extension/issues"
},
"homepage": "https://github.com/buzcarter/ace-chordpro-extension#readme",
"scripts": {
"build": "npm run build:clean && npm run build:header && webpack --mode production",
"build:header": "node ./tasks/buildHeaderTask.js",
"build:clean": "rimraf dist .tmp",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"keywords": [ "AceEditor", "ChordPro", "music", "lyrics", "songs", "chords", "extension", "markup", "language" ],
"devDependencies": {
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.0",
"webpack": "^5.70.0",
"webpack-cli": "^5.1.4",
"webpack-concat-files-plugin": "^0.5.2"
}
}