-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.01 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
{
"name": "@minhducsun2002/node-osr-parser",
"version": "0.1.0",
"description": "Parser for osu! replays",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"dev": "jest --watch",
"prepublishOnly": "npm run build",
"docs": "typedoc --options typedoc.json"
},
"author": "Minh Duc Vo <[email protected]>",
"license": "MIT",
"dependencies": {
"@minhducsun2002/leb128": "1.0.0",
"lzma": "^2.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/minhducsun2002/node-osr-parser"
},
"homepage": "https://minhducsun2002.github.io/node-osr-parser/",
"bugs": {
"url": "https://github.com/minhducsun2002/node-osr-parser/issues"
},
"keywords": [
"osr",
"osu",
"replay"
],
"files": [
"dist/**/**"
],
"readme": "README.md",
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/node": "^13.1.5",
"jest": "^24.9.0",
"ts-jest": "^24.3.0",
"typedoc": "^0.16.4",
"typescript": "^3.7.4"
}
}