-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.58 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": "cncnet-map-downloader.js",
"version": "2.3.0",
"description": "Downloads all maps from cncnet",
"main": "index.js",
"scripts": {
"download": "MAP_AGE=99999 RUN_UNPACKAGED=true GAME_TYPE=yr DESTINATION_DIR=./cncnet-yuri-maps node ./scripts/main.js",
"dev": "MAX_NUMBER_OF_MAPS=5 REQUEST_DELAY=5000 MAP_AGE=1 RUN_UNPACKAGED=true GAME_TYPE=yr DESTINATION_DIR=./cncnet-maps node ./scripts/main.js",
"lint": "eslint ./**/*.js ",
"publish:all": "node package.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/danmindru/cncnet-map-downloader.js.git"
},
"keywords": [
"cncnet",
"yuri",
"yuri's revenge",
"red",
"alert",
"red alert 2",
"red alert 2 yuri's revenge",
"yuri's",
"revenge",
"maps",
"yrm",
"ra2",
"yr"
],
"author": "Dan Mindru",
"license": "MIT",
"bugs": {
"url": "https://github.com/danmindru/cncnet-map-downloader.js/issues"
},
"homepage": "https://github.com/danmindru/cncnet-map-downloader.js#readme",
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.0",
"lodash": "^4.17.15",
"md5-file": "^5.0.0",
"ora": "^4.0.5",
"pkg": "^4.4.9",
"prompts": "^2.3.2",
"request": "^2.88.2",
"sanitize-filename": "^1.6.3",
"unzipper": "^0.10.11"
},
"devDependencies": {
"eslint": "^7.5.0",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-push": "npm run test",
"pre-commit": "npm run lint && node ./node_modules/.bin/pretty-quick --staged"
}
}
}