-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
69 lines (69 loc) · 1.79 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
61
62
63
64
65
66
67
68
69
{
"name": "ChordFiddle",
"version": "2.3.0",
"description": "ChordPro editor. Transpose your chord sheet. Convert ChordPro to chord sheet.",
"private": true,
"scripts": {
"test": "yarn lint",
"lint": "node_modules/.bin/eslint --ext .js .",
"lint:fix": "node_modules/.bin/eslint --fix --ext .js .",
"build": "webpack --env production",
"prepublishOnly": "yarn install && yarn test && yarn build",
"start": "webpack serve --open"
},
"repository": {
"type": "git",
"url": "https://github.com/martijnversluis/chordfiddle.git"
},
"keywords": [
"javascript",
"chords",
"parsing",
"convert",
"chord-sheet",
"chordpro"
],
"author": "martijnversluis@gmail.com",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/martijnversluis/chordfiddle/issues"
},
"homepage": ".",
"githubHome": "https://github.com/martijnversluis/ChordFiddle",
"about": "https://github.com/martijnversluis/ChordFiddle/blob/master/README.md#chordfiddle",
"dependencies": {
"chordjs": "^2.0.1",
"chordsheetjs": "^7.17.0",
"lz-string": "^1.5.0",
"query-string": "^8.1.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"css-loader": "^6.7.3",
"eslint": "^8.37.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"handlebars-webpack-plugin": "^2.2.1",
"sass": "^1.60.0",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
]
]
}
}