-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.45 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.45 KB
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
{
"name": "@bochilteam/scraper-games",
"version": "1.0.2",
"description": "Games data's scraper module",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/@types/index.d.ts",
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js",
"types": "./lib/@types/index.d.ts"
}
},
"scripts": {
"test": "npm run test:cjs & npm run test:esm",
"test:cjs": "mocha ./lib/cjs/test/*.js",
"test:esm": "mocha ./lib/esm/test/*.js",
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:types": "tsc -p tsconfig.types.json",
"compile": "node ../../scripts/compile-typescript.js && npm run write:package",
"write:package": "node ../../scripts/write-package.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BochilTeam/scraper.git"
},
"author": "BochilTeam",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/BochilTeam/scraper/issues"
},
"homepage": "https://github.com/BochilTeam/scraper/tree/master/packages/scraper-games#readme",
"files": [
"lib/**/*.js",
"lib/**/**.d.ts",
"lib/**/package.json"
],
"dependencies": {
"got": "^11.8.6",
"zod": "^3.20.2"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.17",
"mocha": "^10.2.0"
}
}