-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
61 lines (61 loc) · 1.22 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
{
"name": "cue-parser",
"preferGlobal": false,
"version": "0.3.0",
"author": {
"name": "Xiao Han",
"homepage": "https://github.com/justlaputa"
},
"contributors": [
{
"name": "Borewit",
"homepage": "https://github.com/Borewit"
},
{
"name": "Xiao Han",
"homepage": "https://github.com/justlaputa"
}
],
"description": "A simple js library to parse cue sheet",
"keywords": [
"cue",
"sheet",
"cue-sheet",
"parser",
"eac",
"xld"
],
"scripts": {
"test": "mocha test/test.js",
"compile-lib": "tsc -p lib",
"compile": "npm run compile-lib",
"build": "npm run compile",
"lint": "tslint 'lib/**/*.ts'",
"fix-lint": "tslint --fix 'lib/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justlaputa/cue-parser.git"
},
"dependencies": {
"chardet": "^1.0.0"
},
"devDependencies": {
"@types/node": "^14.0.23",
"expect.js": "^0.3.1",
"mocha": "^8.1.0",
"tslint": "^6.0.0",
"typescript": "^3.5.3"
},
"main": "lib/cue",
"typings": "lib/cue",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"engines": {
"node": ">=10",
"npm": ">=6"
},
"license": "MIT"
}