-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"name": "@cayleygraph/cayley",
"type": "module",
"private": false,
"version": "1.2.1",
"description": "JavaScript client for Cayley",
"main": "cayley.js",
"types": "cayley.d.ts",
"scripts": {
"build": "tsc --lib ES2015 --lib dom",
"test": "npm run build && mocha",
"docs": "typedoc --module commonjs --mode file --excludeExternals --excludePrivate --exclude n3.ts,**/*.spec.ts --toc Format,Language,Client,Graph,Path",
"prepack": "npm run build & npm run build -- --declaration"
},
"author": "Iddan Aaronsohn",
"license": "Apache-2.0",
"dependencies": {
"@rdfjs/data-model": "^1.1.2",
"@types/node": "^12.7.12",
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"mocha": "^6.2.1",
"typedoc": "^0.15.2",
"typescript": "^3.6.4"
},
"directories": {
"doc": "docs",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cayleygraph/javascript-client.git"
},
"keywords": [
"linked-data",
"data",
"database",
"json-ld",
"cayley"
],
"bugs": {
"url": "https://github.com/cayleygraph/javascript-client/issues"
},
"homepage": "https://github.com/cayleygraph/javascript-client#readme"
}