-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.33 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": "s98-to-vgm",
"version": "0.11.0",
"description": "",
"main": "dist/index.js",
"bin": {
"s98-to-vgm": "bin/s98_to_vgm.js",
"vgm-to-s98": "bin/vgm_to_s98.js"
},
"files": [
"README.md",
"package.json",
"dist",
"bin"
],
"scripts": {
"prepare": "npm run clean && npm run build",
"clean": "rm-cli -ss -r dist",
"build": "tsc",
"typedoc": "typedoc"
},
"author": "Mitsutaka Okazaki",
"dependencies": {
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0",
"encoding-japanese": "^1.0.30",
"util": "^0.12.3",
"vgm-parser": "^0.8.6"
},
"devDependencies": {
"@types/command-line-args": "^5.0.0",
"@types/command-line-usage": "^5.0.1",
"@types/encoding-japanese": "^1.0.15",
"@types/jest": "^24.0.25",
"@types/node": "^12.12.12",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"rm-cli": "^1.4.2",
"ts-jest": "^26.1.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typedoc": "^0.15.2",
"typescript": "^3.4.5"
},
"repository": {
"type": "git",
"url": "git://github.com/digital-sound-antiques/s98-to-vgm.git"
},
"keywords": [
"spfm",
"vgm",
"chiptune"
],
"license": "MIT",
"engines": {
"node": ">=10.0.0"
}
}