This repository was archived by the owner on Sep 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.74 KB
/
package.json
File metadata and controls
61 lines (61 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
{
"name": "s-otk-js",
"version": "1.1.4",
"type": "module",
"description": "Неофициальная обертка для закрытого API сайта Самарской Объединенной Транспортной Карты, написанная для NodeJS",
"main": "out/index.js",
"scripts": {
"prebuild": "del out/",
"build": "ttsc",
"postbuild": "cpy '**/*' '!**/*.ts' '../out' --cwd=src --no-overwrite --parents",
"start": "node out/index.js",
"test": "jest"
},
"files": [
"out/**/*.d.ts",
"out/**/*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/VityaSchel/s-otk-js.git"
},
"keywords": [
"wrapper",
"api",
"api-wrapper",
"samara"
],
"author": "Viktor Shchelochkov <hi@hloth.dev> (https://hloth.dev/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/VityaSchel/s-otk-js/issues"
},
"homepage": "https://github.com/VityaSchel/s-otk-js#readme",
"dependencies": {
"cookie": "^0.5.0",
"date-fns": "^2.29.3",
"follow-redirects": "^1.15.2",
"form-data": "^4.0.0",
"lodash": "^4.17.21",
"node-fetch": "^3.3.0",
"node-html-parser": "^5.3.3"
},
"devDependencies": {
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@types/cookie": "^0.5.1",
"@types/jest": "^29.2.0",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@zoltu/typescript-transformer-append-js-extension": "^1.0.1",
"babel-jest": "^29.2.2",
"cpy-cli": "^4.2.0",
"del-cli": "^4.0.1",
"dotenv": "^16.0.0",
"eslint": "^8.13.0",
"ts-jest": "^29.0.3",
"ttypescript": "^1.5.13",
"typescript": "^4.8.3"
}
}