-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.59 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.59 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
{
"name": "wrapdirecte",
"version": "0.3.0",
"description": "The ULTIMATE wrapper for EcoleDirecte's private API.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "npm run build",
"test": "ts-node tests/all.test.ts",
"test-login": "ts-node tests/runner.ts login",
"test-relogin": "ts-node tests/runner.ts relogin",
"test-selectAccount": "ts-node tests/runner.ts selectAccount",
"test-homework": "ts-node tests/runner.ts homework",
"test-grades": "ts-node tests/runner.ts grades",
"test-messaging": "ts-node tests/runner.ts messaging",
"test-timetable": "ts-node tests/runner.ts timetable",
"test-absences": "ts-node tests/runner.ts absences",
"test-timeline": "ts-node tests/runner.ts timeline",
"test-documents": "ts-node tests/runner.ts documents",
"test-cloud": "ts-node tests/runner.ts cloud",
"test-settings": "ts-node tests/runner.ts settings"
},
"keywords": [
"ecoledirecte",
"api",
"wrapper",
"typescript",
"education"
],
"author": "evo",
"license": "LGPL-3.0-or-later",
"devDependencies": {
"@types/node": "^25.6.0",
"dotenv": "^17.4.1",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^6.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Scool-app/wrapDirecte.git"
}
}