-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 1.85 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 1.85 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "hextuples",
"version": "2.0.0",
"description": "Simple, fast, hextuples parser",
"sideEffects": false,
"scripts": {
"build": "pika build",
"prebuild": "rm -rf dist/*",
"prepublish": "npm run build",
"test": "jest --coverage",
"version": "yarn run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ontola/hextuples-parser.git"
},
"keywords": [
"hextuples",
"rdflib",
"nquads",
"ntriples",
"nq",
"parser",
"rdfjs",
"rdf",
"linked",
"data",
"link-lib",
"link-redux"
],
"author": "Thom van Kalkeren <thom@argu.co>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ontola/hextuples-parser/issues"
},
"homepage": "https://github.com/ontola/hextuples-parser#readme",
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg",
{
"exclude": [
"__tests__/**/*"
]
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
]
]
},
"dependencies": {
"@ontologies/core": ">=2.0.0"
},
"devDependencies": {
"@ontologies/core": "^2.0.0",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.8.1",
"@pika/plugin-build-web": "^0.8.1",
"@pika/plugin-bundle-web": "^0.8.1",
"@pika/plugin-ts-standard-pkg": "^0.8.1",
"@types/jest": "^24.9.0",
"jest": "^24.9.0",
"np": "^5.2.1",
"ts-jest": "^24.3.0",
"typescript": "^3.7.5"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.test.json"
}
},
"preset": "ts-jest",
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
}
},
"peerDependencies": {
"can-ndjson-stream": "^1.0.2"
}
}