-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.41 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.41 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
62
63
64
{
"name": "classeviva-js",
"version": "1.0.0",
"description": "JavaScript/Node.js wrapper for Classeviva API (Italian school register system)",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node examples/esempio-base.js",
"test": "node examples/esempio-base.js",
"example": "node examples/esempio-base.js",
"dev": "node --watch examples/esempio-base.js",
"lint": "eslint src/ examples/",
"validate": "node -c src/index.js && echo '✅ Syntax validation passed'"
},
"keywords": [
"classeviva",
"api",
"wrapper",
"school",
"register",
"italy",
"italian",
"spaggiari",
"student",
"grades",
"absence",
"agenda",
"async",
"javascript",
"nodejs",
"es6",
"education"
],
"author": {
"name": "Filippo Berti",
"email": "your-email@example.com",
"url": "https://github.com/your-username"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/your-username/classeviva-js.git"
},
"bugs": {
"url": "https://github.com/your-username/classeviva-js/issues"
},
"homepage": "https://github.com/your-username/classeviva-js#readme",
"dependencies": {
"axios": "^1.6.0"
},
"devDependencies": {
"eslint": "^8.0.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"files": [
"src/",
"examples/",
"README.md",
"LICENSE"
]
}