-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.72 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
{
"name": "rapidreview",
"version": "1.0.1",
"description": "A command-line interface (CLI) to support literature review studies.",
"license": "MIT",
"author": {
"name": "Diogo Matheus Costa",
"email": "[email protected]",
"url": "http://diogomatheus.com.br"
},
"funding": "https://github.com/sponsors/diogomatheus",
"main": "src/rapidreview.js",
"bin": {
"@diogomatheus/rapidreview": "./bin/run",
"rapidreview": "./bin/run"
},
"files": [
"/bin",
"/src"
],
"keywords": [
"literature review",
"rapid review",
"bibtex",
"jabref",
"cli"
],
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/diogomatheus/rapidreview",
"repository": {
"type": "git",
"url": "https://github.com/diogomatheus/rapidreview"
},
"bugs": "https://github.com/diogomatheus/rapidreview/issues",
"dependencies": {
"@orcid/bibtex-parse-js": "^0.0.25",
"commander": "^9.4.0",
"inquirer": "^8.0.0",
"listr": "^0.14.3",
"listr-silent-renderer": "^1.1.1"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"rewire": "^6.0.0",
"sinon": "^14.0.0"
},
"scripts": {
"test": "npx mocha './test/**/*.spec.js'",
"test-coverage": "nyc npm test",
"test-report": "nyc report --reporter=lcovonly",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"eslint": "npx eslint .",
"prettier": "npx prettier --write ."
}
}