-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
{
"name": "tablature-parser",
"version": "0.10.1",
"author": "Isaiah Odhner <[email protected]>",
"description": "Parse guitar tabs",
"license": "MIT",
"keywords": [
"tablature",
"tabs",
"tab",
"tab-parser",
"tablature-parser",
"parse-tabs",
"parse-tablature",
"parse",
"parser",
"guitar",
"guitar-tabs",
"guitar-tablature",
"music",
"songs",
"song",
"ascii",
"ascii-tabs"
],
"repository": {
"type": "git",
"url": "https://github.com/1j01/tablature-parser.git"
},
"bugs": {
"url": "https://github.com/1j01/tablature-parser/issues"
},
"main": "build/tablature-parser.js",
"files": [
"build"
],
"scripts": {
"prepare": "coffee -o build -c tablature-parser.coffee",
"prepublishOnly": "npm test && npm run spellcheck",
"test": "mocha --require coffeescript/register \"test/**/*.{js,coffee}\"",
"test:watch": "npm run test -- --watch --watch-files \"**/*.coffee\" --watch-extensions js,coffee",
"lint": "coffeelint tablature-parser.coffee && cspell-cli lint ."
},
"devDependencies": {
"chai": "^4.3.7",
"coffeelint": "^2.1.0",
"coffeescript": "^2.7.0",
"mocha": "^10.2.0"
}
}