-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.46 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
{
"name": "@openlawnz/openlawnz-parsers",
"version": "1.0.2",
"description": "OpenLaw NZ Parsers used to extract information from New Zealand case law PDF files.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "OpenLaw NZ",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/openlawnz/openlawnz-parsers.git"
},
"bugs": {
"url": "https://github.com/openlawnz/openlawnz-parsers/issues"
},
"homepage": "https://github.com/openlawnz/openlawnz-parsers#readme",
"scripts": {
"build": "rimraf dist && tsc",
"build:watch": "rimraf dist && tsc -w",
"lint": "eslint . --ext .ts",
"test": "jest",
"test:coverage": "jest --collectCoverage",
"package": "npm run build && npm pack"
},
"files": [
"dist/**/*"
],
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"dependencies": {
"fuse.js": "6.6.2",
"pdfjs-dist": "3.1.81"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4",
"rimraf": "^3.0.2"
}
}