-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.44 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
{
"name": "ourmarks",
"version": "3.0.2",
"description": "A module for extracting exams marks from official PDFs, for the Faculty of Information Technology Engineering at Damascus University",
"repository": "https://github.com/Rami-Sabbagh/OurMarks.git",
"homepage": "https://rami-sabbagh.github.io/OurMarks/",
"bugs": "https://github.com/Rami-Sabbagh/OurMarks/issues",
"author": "Rami Sabbagh <[email protected]> (https://rami-sabbagh.github.io/)",
"keywords": [
"pdf",
"marks",
"fite",
"ite",
"damascus",
"university"
],
"license": "AGPL-3.0-or-later",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"sideEffects": false,
"scripts": {
"docs": "typedoc",
"lint": "eslint --ext .ts src/**",
"test": "jest",
"build": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json",
"prepublishOnly": "yarn build && yarn test",
"visualize": "ts-node scripts/visualize.ts"
},
"files": [
"src/",
"dist/"
],
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/node": "^16.3.3",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"codecov": "^3.8.2",
"eslint": "^8.23.1",
"jest": "^29.0.3",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^2.8.335",
"ts-jest": "^29.0.1",
"ts-node": "^10.0.0",
"typedoc": "^0.23.15",
"typescript": "^4.3.5"
},
"dependencies": {}
}