-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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
{
"name": "osu-map-dl",
"description": "Simple and easy-to-use node package for downloading osu! beatmaps from either osu website or bloodcat.",
"version": "0.1.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint src/*.ts",
"bump-version:patch": "npm version patch --sign-git-tag -f",
"bump-version:minor": "npm version minor --sign-git-tag -f",
"bump-version:major": "npm version major --sign-git-tag -f",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loarca/osu-map-dl.git"
},
"keywords": [
"osu",
"beatmap",
"download",
"map",
"bancho",
"bloodcat",
"node"
],
"author": {
"name": "Alejandro Loarca",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/loarca/osu-map-dl/issues"
},
"homepage": "https://github.com/loarca/osu-map-dl#readme",
"devDependencies": {
"@types/node": "^12.12.62",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"typescript": "^3.9.7"
},
"dependencies": {
"axios": "^0.19.2",
"axios-cookiejar-support": "^0.5.1",
"tough-cookie": "^3.0.1"
}
}