-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
87 lines (87 loc) · 2.51 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "citation-js",
"version": "0.7.16",
"description": "Citation.js converts formats like BibTeX, Wikidata JSON and ContentMine JSON to CSL-JSON to convert to other formats like APA, Vancouver and back to BibTeX.",
"main": "index.js",
"jsdelivr": "build/citation.min.js",
"unpkg": "build/citation.min.js",
"directories": {
"doc": "docs/"
},
"homepage": "https://citation.js.org/",
"repository": {
"type": "git",
"url": "git+https://github.com/larsgw/citation.js.git"
},
"keywords": [
"citation",
"bibtex",
"wikidata",
"contentmine",
"quickscrape",
"csl",
"citeproc"
],
"files": [
"/bin",
"/build/citation.js",
"/build/citation.min.js"
],
"dependencies": {
"@citation-js/cli": "0.7.16",
"@citation-js/core": "0.7.14",
"@citation-js/date": "0.5.1",
"@citation-js/name": "0.4.2",
"@citation-js/plugin-bibjson": "0.7.14",
"@citation-js/plugin-bibtex": "0.7.16",
"@citation-js/plugin-csl": "0.7.14",
"@citation-js/plugin-doi": "0.7.16",
"@citation-js/plugin-ris": "0.7.16",
"@citation-js/plugin-wikidata": "0.7.15",
"citeproc": "^2.4.59"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@citation-js/browserify-disc": "^1.3.5",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"core-js": "^3.8.3",
"jsdoc": "^4.0.2",
"minami": "^1.2.3",
"mocha": "^10.0.0",
"regenerator-runtime": "^0.14.1",
"semver": "^7.3.4",
"standard": "^17.0.0",
"uglify-js": "^3.12.5"
},
"scripts": {
"lint": "standard",
"test": "mocha --check-leaks -R dot test/*.spec.js",
"--1--": "distributions",
"dist:debug": "node tools/build-debug.js",
"dist:regular": "node tools/build.js",
"dist:minify": "uglifyjs --config-file .uglify.json build/citation.js -o build/citation.min.js",
"dist:main": "npm run dist:regular && npm run dist:minify",
"dist": "npm run dist:main && npm run dist:debug",
"--2--": "generate",
"docs": "jsdoc -c .jsdoc.json",
"disc": "node tools/disc.js",
"generate": "npm run dist && npm run docs && npm run disc",
"--3--": "hooks",
"preversion": "npm run lint && npm run test",
"prepublishOnly": "npm run dist:main"
},
"author": "Lars Willighagen (https://larsgw.github.io)",
"license": "MIT",
"bin": {
"citation-js": "bin/cmd.js"
},
"man": "bin/man/citation-js.1",
"bugs": {
"url": "https://github.com/larsgw/citation.js/issues"
},
"engines": {
"node": ">=14"
}
}