This repository was archived by the owner on Feb 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·63 lines (63 loc) · 1.74 KB
/
package.json
File metadata and controls
executable file
·63 lines (63 loc) · 1.74 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "smogon-usage-fetch",
"version": "5.0.5",
"description": "JavaScript API to fetch smogon usage stats",
"main": "./dist/cjs/main.js",
"module": "./dist/esm/main.js",
"types": "./dist/esm/main.d.ts",
"directories": {
"lib": "src/",
"test": "spec/",
"doc": "docs/"
},
"scripts": {
"start": "npm run dist",
"dist": "npm run clean && npm run lint && npm run build && npm run test && npm run docs",
"clean": "rimraf ./dist ./docs",
"build": "tsc --build ./tsconfig.json",
"lint": "eslint ./src/ ./spec/ --ext .ts",
"fix": "eslint ./src/ ./spec/ --ext .ts --fix",
"test": "ts-node --project ./spec/tsconfig.json node_modules/jasmine/bin/jasmine --config=./jasmine.json",
"docs": "typedoc",
"test:manual": "ts-node --project ./spec/tsconfig.json ./spec/manual/main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FelixRilling/smogon-usage-fetch.git"
},
"keywords": [
"smogon",
"pokemon",
"api"
],
"author": {
"name": "Felix Rilling",
"email": "contact@rilling.dev",
"url": "https://rilling.dev"
},
"license": "MIT",
"homepage": "https://github.com/FelixRilling/smogon-usage-fetch#readme",
"bugs": {
"url": "https://github.com/FelixRilling/smogon-usage-fetch/issues"
},
"dependencies": {
"axios": "^0.26.1",
"cheerio": "^1.0.0-rc.12",
"lightdash": "^13.0.2"
},
"devDependencies": {
"@types/jasmine": "^3.7.7",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"jasmine": "^3.7.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-node": "^10.9.0",
"typedoc": "^0.23.24",
"typescript": "~4.9.4"
}
}