forked from o-development/o-dataset-pack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.56 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
{
"name": "o-dataset-pack",
"version": "0.2.0",
"description": "An RDFJS dataset that alerts upon the update of a node",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest --coverage",
"example:extendedDataset": "ts-node ./example/extendedDatasetExample.ts",
"example:subscribableDataset": "ts-node ./example/subscribableDatasetExample.ts",
"example:loadData": "ts-node ./example/loadDataExample.ts",
"docs": "typedoc",
"prepublishOnly": "npm run test && npm run build && npm run docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/o-development/o-dataset-pack.git"
},
"author": "Jackson Morgan",
"license": "MIT",
"bugs": {
"url": "https://github.com/o-development/o-dataset-pack/issues"
},
"homepage": "https://github.com/o-development/o-dataset-pack#readme",
"devDependencies": {
"@rdfjs/types": "^1.0.1",
"@types/jest": "^26.0.23",
"@types/n3": "^1.8.0",
"@types/rdfjs__dataset": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typedoc": "^0.20.36",
"typedoc-plugin-markdown": "^3.8.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@rdfjs/data-model": "^1.2.0",
"@rdfjs/dataset": "^1.1.0",
"jsonld-streaming-parser": "^2.3.0",
"n3": "^1.10.0"
},
"files": [
"dist"
]
}