forked from edtechhub/zotzen-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.18 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.18 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
{
"name": "zotzen-cli",
"version": "1.0.22",
"description": "Command line utility to move data between Zotero and Zenodo",
"main": "zotzen-cli.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node zotzen-cli.js",
"build": "echo \"build\"",
"prepare": "echo \"prepare\"",
"version:old": "git add -A src",
"postversion": "git push && git push --tags",
"publish:patch": "npm version patch; npm publish; git push --tags",
"publish:minor": "npm version minor; npm publish; git push --tags",
"publish:major": "npm version major; npm publish; git push --tags"
},
"files": [
"build/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/opendeved/zotzen-cli.git"
},
"bin": {
"zotzen-cli": "./zotzen-cli.js"
},
"preferGlobal": true,
"author": "OpenDevEd",
"license": "ISC",
"bugs": {
"url": "https://github.com/opendeved/zotzen-cli/issues"
},
"homepage": "https://github.com/opendeved/zotzen-cli#readme",
"dependencies": {
"argparse": "^2.0.1",
"axios": "^0.21.1",
"opn": "^6.0.0",
"prompt": "^1.0.0",
"request": "^2.34",
"zotzen-lib": "^1.0.38"
}
}