This repository was archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.03 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.03 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "feedbackfruits-knowledge-dbpedia-annotator",
"version": "0.2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf lib",
"prestart": "npm run build",
"start": "node lib",
"pretest": "npm run clean && tsc --inlineSourceMap --outDir lib",
"test": "nyc ava --verbose",
"posttest": "npm run clean && npm run build",
"watch-test": "nodemon -w test -x 'npm run test'",
"coverage": "codecov",
"watch": "nodemon lib"
},
"nyc": {},
"ava": {
"files": [
"test/**/*.js"
],
"source": [
"src/**/*.ts"
],
"match": [],
"concurrency": 5,
"failFast": true,
"failWithoutAssertions": false,
"tap": false,
"powerAssert": false,
"require": [
"babel-register"
],
"babel": "inherit"
},
"author": "Steffan Sluis",
"license": "MIT",
"dependencies": {
"@types/node": "^8.0.25",
"dotenv": "^2.0.0",
"feedbackfruits-knowledge-context": "feedbackfruits/feedbackfruits-knowledge-context",
"feedbackfruits-knowledge-engine": "github:feedbackfruits/feedbackfruits-knowledge-engine#semver:^1.1.0",
"memux": "github:knowledge-express/memux#semver:~0.4.0",
"node-fetch": "^1.6.3",
"p-queue": "^0.2.0",
"qs": "^6.4.0",
"typescript": "^2.4.2"
},
"devDependencies": {
"ava": "^0.20.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"codecov": "^1.0.1",
"nodemon": "^1.11.0",
"nyc": "^11.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/feedbackfruits/feedbackfruits-knowledge-dbpedia-annotator.git"
},
"engines": {
"node": ">= 8",
"npm": ">= 5"
},
"bugs": {
"url": "https://github.com/feedbackfruits/feedbackfruits-knowledge-dbpedia-annotator/issues"
},
"homepage": "https://github.com/feedbackfruits/feedbackfruits-knowledge-dbpedia-annotator#readme",
"description": ""
}