-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 2.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "kilometrikisa-client",
"version": "0.13.4",
"description": "A client to scrape data and post cycling records to Kilometrikisa.fi",
"author": "Tuomas Salmi",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tumetsu/kilometrikisa-client/issues"
},
"homepage": "https://github.com/Tumetsu/kilometrikisa-client#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"devDependencies": {
"@types/qs": "^6.9.7",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"typedoc": "^0.22.15",
"typedoc-github-wiki-theme": "^1.0.0",
"typedoc-plugin-markdown": "^3.12.0",
"typedoc-plugin-missing-exports": "^0.22.6",
"typescript": "^4.6.3"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "jest --testPathIgnorePatterns .production.spec.ts",
"test:coverage": "npm run test -- --coverage",
"test:production": "export $(cat .env | xargs) && jest src/**/*.production.spec.ts",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"prettier:fix": "prettier --write --config .prettierrc ./",
"prettier:check": "prettier --check --config .prettierrc ./",
"prepublishOnly": "rm -rf dist && npm test && npm run lint && npm run build",
"preversion": "npm run lint",
"typedoc:publish": "./publish-docs.sh",
"typedoc:generate": "typedoc ./src/index.ts --theme github-wiki --out wiki/ --excludeExternals",
"typedoc:generate-html": "typedoc ./src/index.ts --plugin typedoc-plugin-missing-exports --out docs/ --excludeExternals"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tumetsu/kilometrikisa-client.git"
},
"keywords": [
"kilometrikisa",
"client",
"api",
"scraping"
],
"dependencies": {
"axios": "^0.26.1",
"cheerio": "^1.0.0-rc.10",
"qs": "^6.10.3"
}
}