-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.51 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
{
"name": "@underlay/apg-rdf-parser",
"version": "0.1.0",
"description": "Serialize and parse APG instances to and from RDF datasets",
"main": "lib/index.js",
"types": "es6/index.d.ts",
"module": "es6/index.js",
"directories": {
"lib": "lib",
"es6": "es6"
},
"scripts": {
"test": "npx jest",
"build": "tsc && npx babel es6 -d lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/underlay/apg-rdf-parser.git"
},
"author": "Joel Gustafson",
"license": "MIT",
"bugs": {
"url": "https://github.com/underlay/apg-rdf-parser/issues"
},
"homepage": "https://github.com/underlay/apg-rdf-parser#readme",
"dependencies": {
"@types/rdf-canonize": "gist:dc406f4c567dcab1da98cf19b2b8a6d8",
"@types/shexjs": "gist:423141cd96c858931f618fbf97fdc1b9",
"@types/uuid": "^8.3.0",
"@underlay/apg": "^0.6.3",
"rdf-canonize": "^1.2.0",
"uuid": "^8.3.1",
"ziterable": "^1.0.1"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@shexjs/util": "file:shex.js/packages/shex-util",
"@shexjs/validator": "file:shex.js/packages/shex-validator",
"@types/jest": "^26.0.15",
"fp-ts": "2.8.5",
"io-ts": "2.2.12",
"jest": "^26.6.3",
"n3.ts": "^0.2.0",
"typescript": "^4.0.5"
},
"peerDependencies": {
"@shexjs/util": "1.0.0-alpha.6",
"@shexjs/validator": "1.0.0-alpha.6",
"fp-ts": "^2.8.5",
"io-ts": "^2.2.12",
"n3.ts": "^0.2.0",
"typescript": "^4.0.5"
}
}