-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.99 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
{
"name": "@citation-js/plugin-quickstatements",
"version": "0.5.4",
"description": "Plugin that takes citation-js input and output QuickStatements.",
"main": "lib/index.js",
"scripts": {
"test": "mocha -r @babel/register -R spec test/suite.js",
"babel": "babel src -d lib --copy-files",
"lint": "standard \"src/**/*.js\" \"test/**/*.js\"",
"coverage": "NODE_ENV=test nyc npm test",
"report": "nyc report --reporter=lcov > coverage.lcov",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"prepublishOnly": "npm run babel",
"version": "npm run changelog",
"preversion": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git://github.com/citation-js/plugin-quickstatements.git"
},
"keywords": [
"Citation.js",
"Wikidata",
"QuickStatements"
],
"author": "Egon Willighagen",
"license": "MIT",
"bugs": {
"url": "https://github.com/citation-js/plugin-quickstatements/issues"
},
"homepage": "https://github.com/citation-js/plugin-quickstatements#readme",
"engines": {
"node": ">=14"
},
"files": [
"/lib"
],
"nyc": {
"include": [
"src/**/*.js"
],
"sourceMap": false,
"instrument": false
},
"standard": {
"parser": "@babel/eslint-parser"
},
"dependencies": {
"@citation-js/date": "^0.5.0",
"@citation-js/name": "^0.4.2",
"wikidata-sdk": "^8.0.0"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/eslint-parser": "^7.14.3",
"@babel/preset-env": "^7.7.7",
"@babel/register": "^7.7.7",
"@citation-js/core": "^0.6.1",
"@citation-js/plugin-doi": "^0.6.1",
"@citation-js/plugin-isbn": "^0.3.0",
"@citation-js/plugin-pubmed": "^0.2.0",
"babel-plugin-istanbul": "^6.0.0",
"conventional-changelog-cli": "^2.1.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"standard": "^17.0.0"
},
"peerDependencies": {
"@citation-js/core": ">=0.6.0 <0.8"
}
}