-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "semantic-ostrich",
"description": "prototypical implementation for semantic versioned querying on top of OSTRICH stores",
"repository": {
"type": "git",
"url": "git+https://github.com/rdfostrich/semantic-ostrich.git"
},
"version": "1.0.1",
"main": "index.js",
"author": "Ruben Taelman <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rdfostrich/semantic-ostrich"
},
"homepage": "https://github.com/rdfostrich/semantic-ostrich#readme",
"bin": {
"semantic-ostrich": "bin/semantic-ostrich"
},
"files": [
"bin/*",
"dist/*",
"index.js"
],
"dependencies": {
"babel-polyfill": "^6.26.0",
"lodash": "^4.17.4",
"minimist": "^1.2.0",
"n3": "^1.0.0",
"n3-parser.js": "^0.1.1",
"ostrich-bindings": "^1.2.3",
"rdf-string": "^1.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1"
},
"scripts": {
"build": "babel lib/SemanticOstrich.js -o dist/SemanticOstrich.js",
"prepare": "npm run build",
"test": "exit 0"
}
}