-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
99 lines (99 loc) · 2.86 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "zotero-lib",
"version": "1.0.103",
"description": "",
"main": "build/zotero-lib.js",
"bin": {
"zotero-lib": "build/zotero-cli.js"
},
"files": [
"build/*"
],
"scripts": {
"start": "node ./build/zotero-cli.js",
"dev": "ts-node ./src/zotero-cli.ts",
"lib": "node ./build/zotero-lib.js",
"prisma:generate": "prisma generate",
"test:cli_to_javascript": "node ./tests/test_cli_to_javascript.js",
"test": "jest",
"legacy:test": "node ./tests/*.js",
"legacy:test_create": "node ./tests/test_create.js",
"legacy:test_item": "node ./tests/test_item.js",
"legacy:test_update": "node ./tests/test_update.js",
"copy:schema": "copyfiles -u 1 prisma/schema.prisma build/prisma/",
"build": "rimraf build/ && npm run prisma:generate && tsc && npm run copy:schema",
"prepublish": "npm run build",
"prepack": "npm run build",
"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",
"release": "standard-version",
"docs": "typedoc"
},
"standard-version": {
"skip": {
"tag": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenDevEd/zotero-lib.git"
},
"author": "opendeved",
"license": "ISC",
"bugs": {
"url": "https://github.com/OpenDevEd/zotero-lib/issues"
},
"homepage": "https://github.com/OpenDevEd/zotero-lib#readme",
"dependencies": {
"@iarna/toml": "^2.2.5",
"@inquirer/prompts": "^3.0.3",
"@npmcli/fs": "^3.1.0",
"@prisma/client": "^5.3.1",
"@sentry/node": "^7.63.0",
"@types/node": "^14.14.14",
"ajv": "^6.12.6",
"argparse": "^2.0.1",
"axios": "^1.6.8",
"chalk": "^5.3.0",
"dotenv": "^8.2.0",
"figlet": "^1.6.0",
"form-data": "^4.0.0",
"got": "^12.5.1",
"he": "^1.2.0",
"http-link-header": "^1.0.3",
"lodash": "^4.17.21",
"node-cron": "^3.0.0",
"node-libcurl": "^3.0.0",
"object-hash": "^3.0.0",
"sqlite3": "^5.0.2",
"standard-version": "^9.3.1",
"string-similarity": "^4.0.4",
"sugar": "^2.0.6",
"ts-dotenv": "^0.8.3",
"tslib": "^2.2.0",
"winston": "^3.6.0",
"ws": "^8.14.2",
"xml-escape": "^1.1.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/argparse": "^2.0.10",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"copyfiles": "^2.4.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.5.1",
"prettier": "^2.2.1",
"prisma": "^5.3.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.9.1",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
}
}