-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.4 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
46
47
48
49
50
51
{
"name": "wikidata-entity-lookup",
"version": "0.0.0-development",
"description": "Find entities (people, places, organizations) in wikidata.",
"keywords": [
"wikidata",
"entity",
"linked-data"
],
"homepage": "https://github.com/cwrc/wikidata-entity-lookup#readme",
"bugs": {
"url": "https://github.com/cwrc/wikidata-entity-lookup/issues"
},
"license": "GPL-3.0",
"author": "James Chartrand <[email protected]>",
"contributors": [
"Andrew MacDonald <[email protected]>",
"Luciano Frizzera <[email protected]>"
],
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/cwrc/wikidata-entity-lookup.git"
},
"scripts": {
"cm": "git-cz",
"test": "jest",
"report-coverage": "cat ./coverage/coverage-final.json | codecov",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"dependencies": {
"wikidata-sdk": "^7.13.0"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.9",
"codecov": "^3.8.3",
"commitizen": "^4.2.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"fetch-mock": "^9.11.0",
"git-cz": "^4.7.6",
"husky": "^7.0.1",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"semantic-release": "^17.4.4"
}
}