-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "asurso",
"version": "0.2.9",
"type": "module",
"description": "asurso.ru API wrapper [beta]",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "NODE_OPTIONS='--experimental-vm-modules' jest --config=\"./jest.config.js\"",
"build": "babel src --out-dir lib",
"gen-toc": "find *.md -exec node gentoc.js {} \\;",
"prepublishOnly": "npm run build -- --presets minify && npm run gen-toc",
"postinstall": "patch-package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VityaSchel/asurso.git"
},
"keywords": [
"api",
"wrapper",
"api-wrapper",
"student",
"reverse-engineering"
],
"author": "vityaschel <[email protected]> (https://hloth.dev/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/VityaSchel/asurso/issues"
},
"homepage": "https://github.com/VityaSchel/asurso#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-private-methods": "^7.16.7",
"babel-preset-minify": "^0.5.1",
"dotenv": "^11.0.0",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^25.7.0",
"jest": "^27.4.7",
"patch-package": "^6.4.7"
},
"dependencies": {
"cookie": "^0.4.1",
"date-fns": "^2.28.0",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"node-fetch": "^3.1.1",
"node-html-parser": "^5.2.0",
"ws": "^8.4.2",
"xlsx": "^0.17.5",
"yup": "^0.32.11"
}
}