-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.8 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
66
67
{
"author": "Minor Gordon",
"name": "webdatacommons",
"bin": {
"webdatacommons": "./dist/cli.js"
},
"description": "TypeScript library and CLI for working with Web Data Commons datasets",
"dependencies": {
"@rdfjs/types": "^1.1.0",
"@types/cli-progress": "^3.11.5",
"@types/concat-stream": "2.0.3",
"@types/content-type": "^1.1.8",
"@types/n3": "1.16.4",
"@types/papaparse": "^5.3.14",
"@types/split2": "^4.2.3",
"cli-progress": "^3.12.0",
"cmd-ts": "^0.13.0",
"concat-stream": "^2.0.0",
"content-type": "^1.0.5",
"dev-null": "^0.1.1",
"global-cache-dir": "^6.0.0",
"got": "^14.0.0",
"n3": "^1.17.2",
"node-html-parser": "^6.1.11",
"papaparse": "^5.4.1",
"pino": "^8.17.2",
"split2": "^4.2.0",
"ts-invariant": "^0.10.3",
"typescript-memoize": "^1.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"rimraf": "3.0.2",
"ts-jest": "^29.1.1",
"typescript": "5.3.3"
},
"engines": {
"node": ">=16"
},
"files": [
"dist"
],
"license": "GPL-3.0-only",
"exports": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/minorg/webdatacommons"
},
"scripts": {
"build": "tsc -b",
"clean": "rimraf dist",
"rebuild": "rimraf dist && tsc -b",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"watch": "tsc -w --preserveWatchOutput"
},
"type": "module",
"types": "dist/index.d.ts",
"version": "3.0.5"
}