-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"name": "semantic-toolkit",
"version": "0.2.0",
"description": "JavaScript + Semantic web = <3",
"author": "David Hérault <[email protected]> (https://github.com/dherault)",
"license": "MIT",
"main": "src/index.js",
"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"
},
"options": {
"mocha": "--bail --check-leaks"
},
"homepage": "https://github.com/nelson-ai/semantic-toolkit#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nelson-ai/semantic-toolkit.git"
},
"bugs": {
"url": "https://github.com/nelson-ai/semantic-toolkit/issues"
},
"keywords": [
"semantic",
"rdf",
"rdfs",
"owl"
],
"engines": {
"node": ">=6.9.1"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"eslint": "^3.14.1",
"eslint-config-nelson": "^0.2.0",
"eslint-plugin-import": "^2.2.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0"
}
}