-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.82 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "web2cit",
"version": "2.0.0",
"description": "Core components for the Web2Cit translation ecosystem",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"schema"
],
"scripts": {
"test": "jest",
"prepare": "husky install && npm run build",
"prepublishOnly": "npm test && npm run lint",
"build": "npm run version && tsc",
"build:watch": "npm run version && tsc -w",
"format": "prettier --write src",
"lint": "eslint",
"version": "genversion --es6 --double --semi src/version.ts && git add src/version.ts"
},
"keywords": [
"wikipedia",
"citoid",
"metadata",
"citations",
"zotero",
"scraping"
],
"author": "Diego de la Hera",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://gitlab.wikimedia.org/diegodlh/w2c-core.git"
},
"bugs": {
"url": "https://phabricator.wikimedia.org/tag/w2c-core/"
},
"homepage": "https://meta.wikimedia.org/wiki/Web2Cit",
"engines": {
"node": ">= 12"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/jmespath": "^0.15.0",
"@types/jsdom": "^16.2.15",
"@types/minimatch": "^3.0.5",
"@types/node": "^12.20.46",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"genversion": "^3.1.1",
"husky": "^7.0.4",
"jest": "^27.4.5",
"jsdom": "^19.0.0",
"lint-staged": "^12.1.6",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"typescript": "^4.8.3"
},
"dependencies": {
"fastest-levenshtein": "^1.0.12",
"jmespath": "^0.16.0",
"loglevel": "^1.8.0",
"minimatch": "^5.1.0",
"node-fetch": "^2.6.6",
"path-normalize": "^6.0.6",
"sugar": "^2.0.6"
}
}