forked from dherault/semantic-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.39 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.39 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
{
"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/nelson-ai/semantic-graphql.git"
},
"bugs": {
"url": "https://github.com/nelson-ai/semantic-graphql/issues"
},
"homepage": "https://github.com/nelson-ai/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)"
],
"options": {
"mocha": "--bail --check-leaks"
},
"scripts": {
"test": "./node_modules/.bin/mocha $npm_package_options_mocha",
"coverage": "./node_modules/.bin/istanbul cover _mocha -- $npm_package_options_mocha",
"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"
},
"devDependencies": {
"chai": "^4.0.2",
"coveralls": "^2.13.1",
"eslint": "^4.1.1",
"eslint-config-nelson": "^0.2.0",
"eslint-plugin-import": "^2.6.1",
"graphql": "^0.10.3",
"graphql-relay": "^0.5.2",
"istanbul": "^0.4.5",
"mocha": "^3.4.2"
},
"dependencies": {
"n3": "^0.10.0"
},
"peerDependencies": {
"graphql": "^0.10.3"
}
}