-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
45 lines (45 loc) · 1.29 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
{
"name": "semantic-graphql",
"version": "0.6.4",
"description": "Create GraphQL schemas from RDF ontologies",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dherault/semantic-graphql.git"
},
"bugs": {
"url": "https://github.com/dherault/semantic-graphql/issues"
},
"homepage": "https://github.com/dherault/semantic-graphql#readme",
"engines": {
"node": ">=6.9.1"
},
"author": "David Hérault <dherault@gmail.com> (https://github.com/dherault)",
"contributors": [
"Austin Harris (https://github.com/Astn)"
],
"scripts": {
"test": "./node_modules/.bin/mocha --bail --check-leaks",
"coverage": "./node_modules/.bin/istanbul cover _mocha -- --bail --check-leaks",
"coverage:serve": "cd coverage/lcov-report && python -m SimpleHTTPServer",
"coverage:all": "npm run coverage && npm run coverage:serve",
"dev": "cd examples/basic && npm run watch",
"lint": "eslint ./src"
},
"devDependencies": {
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"eslint": "^8.46.0",
"eslint-config-dherault": "^1.11.2",
"istanbul": "^0.4.5",
"mocha": "^10.2.0"
},
"dependencies": {
"n3": "^0.10.0"
},
"peerDependencies": {
"graphql": "^16.7.1",
"graphql-relay": "^0.10.0"
}
}