-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.81 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": "wcite",
"version": "0.4.4",
"description": "Use Wikidata as reference manager",
"homepage": "https://github.com/wikicite/wcite#readme",
"author": "Jakob Voß",
"license": "MIT",
"keywords": [
"wikidata",
"wikicite",
"citation",
"bibtex",
"pandoc",
"csl"
],
"repository": {
"type": "git",
"url": "https://github.com/wikicite/wcite.git"
},
"bin": {
"pwcite": "./bin/pwcite",
"wcite": "./bin/wcite"
},
"main": "index.js",
"files": [
"lib/",
"bin/pwcite",
"bin/wcite",
"assets/wikidata-links.js",
"assets/wikidata-links.css",
"CHANGELOG.md"
],
"scripts": {
"test": "mocha",
"coverage": "nyc mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard",
"fix": "standard --fix",
"lint-staged": "lint-staged",
"examples": "for md in examples/*.md; do pandoc -t json -o examples/$(basename $md .md).json $md; done",
"home": "pandoc -s -F ./bin/pwcite -F ./bin/wikicite-org --bibliography=home/references.json README.md home/wcite.md -o home/index.html",
"push-home": "git subtree split --prefix home -b gh-pages && git push -f origin gh-pages:gh-pages"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": [
"standard --fix",
"git add"
]
},
"engines": {
"node": ">= 8.0"
},
"dependencies": {
"@citation-js/core": "^0.5.0-alpha.9",
"@citation-js/plugin-bibtex": "^0.5.0-alpha.9",
"@citation-js/plugin-csl": "^0.5.0-alpha.9",
"@citation-js/plugin-wikidata": "^0.5.0-alpha.9",
"commander": "^3.0.2",
"yaml": "^1.10.0"
},
"devDependencies": {
"coveralls": "^3.1.0",
"lint-staged": "^9.5.0",
"mocha": "^6.2.3",
"nyc": "^14.0",
"pre-commit": "^1.2.2",
"should": "^13.2.3",
"standard": "^14.3.4"
}
}