-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.07 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
{
"name": "mc-ids",
"version": "1.0.1",
"description": "A full list of Minecraft IDs, with built-in type support and a command-line scraper to grab updated IDs from the wiki.",
"main": "dist/index.js",
"dependencies": {
"axios": "^0.19.2",
"cheerio": "^1.0.0-rc.3",
"commander": "^5.1.0",
"fs-extra": "^9.0.1"
},
"devDependencies": {
"@types/cheerio": "^0.22.18",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^25.2.3",
"jest": "^26.0.1",
"ts-jest": "^26.0.0",
"tsc": "^1.20150623.0",
"typescript": "^3.9.3"
},
"scripts": {
"test": "npx jest",
"build": "tsc",
"build-and-test": "npm run build && npm run test"
},
"bin": {
"scrape-mc-ids": "dist/cli.js",
"mc-ids": "dist/cli.js"
},
"keywords": [],
"author": "Splox",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SploxFox/MinecraftIDsScraper.git"
},
"bugs": {
"url": "https://github.com/SploxFox/MinecraftIDsScraper/issues"
},
"homepage": "https://github.com/SploxFox/MinecraftIDsScraper#readme"
}