forked from bjohas/pyzotero-cli
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.49 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.49 KB
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
{
"name": "zotero-cli",
"version": "1.0.6",
"description": "Command line for interacting with Zotero libraries",
"main": "bin/zotero-cli.js",
"preferGlobal": true,
"bin": {
"zotero-cli": "./bin/zotero-cli.js"
},
"scripts": {
"start": "ts-node bin/zotero-cli.ts",
"preversion": "npm test",
"postversion": "git push --follow-tags",
"test": "tslint -t stylish --project .",
"build": "tsc && chmod +x bin/*.js",
"prepublishOnly": "npm run build",
"go": "npm run build && npm version patch && npm publish",
"fixed": "npm test && npm run build && git add bin && git commit -m \"fixes #$FIXED\" && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edtechhub/zotero-cli.git"
},
"keywords": [
"zotero"
],
"author": "Emiliano Heyns",
"license": "ISC",
"bugs": {
"url": "https://github.com/edtechhub/zotero-cli/issues"
},
"homepage": "https://github.com/edtechhub/zotero-cli#readme",
"devDependencies": {
"@types/node": "^13.11.1",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@iarna/toml": "^2.2.3",
"ajv": "^6.12.0",
"argparse": "^1.0.10",
"docstring": "^1.1.0",
"dotenv": "^8.2.0",
"http-link-header": "^1.0.2",
"md5-file": "^5.0.0",
"request": "^2.88.2",
"request-promise": "^4.2.5"
},
"files": [
"package.json",
"bin/zotero-cli.d.ts",
"bin/zotero-cli.js",
"docs/COMMANDS.md",
"README.md"
]
}