forked from edtechhub/zotero-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.76 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.76 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
58
59
60
61
{
"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",
"publish:patch": "npm run build; npm version patch; npm publish; git push --tags",
"publish:minor": "npm run build; npm version minor; npm publish; git push --tags",
"publish:major": "npm run build; npm version major; npm publish; git push --tags",
"fixed": "npm test && npm run build && git add bin && git commit -m \"fixes #$FIXED\" && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opendeved/zotero-cli.git"
},
"keywords": [
"zotero"
],
"author": "opendeved",
"license": "ISC",
"bugs": {
"url": "https://github.com/opendeved/zotero-cli/issues"
},
"homepage": "https://github.com/opendeved/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": "^2.0.1",
"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",
"zotero-lib": "^1.0.5"
},
"files": [
"package.json",
"bin/zotero-cli.d.ts",
"bin/zotero-cli.js",
"docs/COMMANDS.md",
"README.md"
]
}