-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.14 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
72
73
74
75
76
{
"name": "citeease",
"version": "1.2.0",
"description": "citeease is a CLI tool that generates formatted citations (references) based on various unique identifiers, including URL, DOI, ISBN, PMID, and PMCID.",
"private": false,
"bin": {
"citeease": "dist/citeease.js",
"cite": "dist/index.js"
},
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ganemedelabs/citeease-cli.git"
},
"author": "ganemedelabs",
"license": "MIT",
"bugs": {
"url": "https://github.com/ganemedelabs/citeease-cli/issues"
},
"homepage": "https://github.com/ganemedelabs/citeease-cli#readme",
"keywords": [
"citation",
"reference",
"references",
"bibliography",
"doi",
"isbn",
"pmid",
"pmcid",
"url",
"citation-generator",
"cli-tool",
"command-line",
"bibliography-generator",
"academic",
"research",
"csl",
"citation-style-language"
],
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write \"./**/*.{js,ts,json}\""
},
"dependencies": {
"citeproc": "^2.4.63",
"jsdom": "^25.0.1",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/js": "^9.6.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.9.0",
"@types/xmlhttprequest": "^1.8.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}