forked from EduWireApps/pronote-api
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.4 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
{
"name": "pronote-api-maintained",
"version": "3.1.0",
"description": "Pronote 2020/2021 API (Node.JS/TS library, and GraphQL server)",
"main": "index.js",
"types": "index.d.ts",
"type": "commonjs",
"engines": {
"node": ">=11.14.0"
},
"scripts": {
"start": "node ./bin/server.js",
"lint": "eslint src/* bin/* index.js",
"check": "eslint --fix src/* bin/* index.js",
"test": "eslint src/* bin/* index.js && node ./bin/test.js"
},
"keywords": [
"pronote",
"api",
"http",
"2022"
],
"author": "Adrien 'Litarvan' Navratil <[email protected]>",
"license": "MIT",
"repository": {
"url": "git+https://github.com/Merlode11/pronote-api.git",
"type": "git"
},
"bin": {
"pronote-api-server": "bin/server.js",
"pronote-fetch": "bin/fetch.js"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"graphql": "^15.3.0",
"https-proxy-agent": "^5.0.0",
"jsdom": "^16.5.2",
"node-forge": "1.3.1",
"pako": "^1.0.11",
"polka": "^0.5.2",
"string-strip-html": "^8.2.9",
"uuid": "^8.3.0",
"xxhashjs": "^0.2.2"
},
"devDependencies": {
"@types/node-forge": "^1.3.1",
"@types/pako": "^1.0",
"eslint": "^7.22.0",
"eslint-plugin-node": "^11.1.0"
},
"bugs": {
"url": "https://github.com/Merlode11/pronote-api/issues"
},
"homepage": "https://github.com/Merlode11/pronote-api#readme"
}