-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.68 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
57
58
59
60
61
62
63
64
65
{
"author": "Ahmad-A0",
"name": "edulink-api",
"version": "0.5.0",
"description": "An unofficial API for interacting with OvernetData's Edulink service",
"license": "MIT",
"type": "module",
"files": ["build"],
"exports": "./build/index.js",
"types": "build",
"engines": {
"node": ">=8.0.0",
"vscode": "^1.22.0"
},
"scripts": {
"test": "node .scripts/test.js",
"build": "del-cli build && tsc",
"dev-build": "npm run build && npm run docs",
"build-watch": "npm run build && tsc -w",
"docs": "typedoc --options typedoc.json src/index.ts",
"release-prep": "npm run build && npm run format && npm run docs && npm run format",
"prepare": "npm run build",
"format": "prettier --write ."
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Ahmad-A0/Edulink-API.git"
},
"dependencies": {
"axios": "^0.24.0",
"html-to-text": "^8.1.0",
"typescript": "^4.5.4",
"url": "^0.11.0",
"uuid": "^8.3.2",
"whatwg-url": "^11.0.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^2.0.0",
"@types/html-to-text": "^8.1.0",
"@types/node": "^17.0.8",
"@types/uuid": "^8.3.4",
"@types/whatwg-url": "^8.2.1",
"del-cli": "^4.0.1",
"dotenv": "^10.0.0",
"prettier": "^2.5.1",
"typedoc": "^0.22.10",
"typedoc-plugin-markdown": "^3.11.11"
},
"bugs": {
"url": "https://github.com/Ahmad-A0/Edulink-API/issues"
},
"homepage": "https://github.com/Ahmad-A0/Edulink-API#readme",
"keywords": [
"edulink",
"overnet",
"overnetdata",
"overnet-data",
"api",
"edulink-api",
"edulink-overnet-data",
"education",
"school"
]
}