-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.28 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "zotero-api-client",
"version": "0.51.0",
"description": "A lightweight, minimalistic Zotero API client",
"repository": {
"type": "git",
"url": "git+https://github.com/tnajdek/zotero-api-client.git"
},
"type": "module",
"main": "lib/main.cjs",
"umd:main": "dist/zotero-api-client.js",
"unpkg": "dist/zotero-api-client.js",
"types": "index.d.ts",
"author": "Tom Najdek",
"license": "AGPL-3.0",
"engines": {
"node": ">= 18.0.0"
},
"browserslist": [
"firefox >= 68",
"chrome >= 67",
"edge >= 15",
"safari >= 11",
"last 2 versions",
"not dead"
],
"scripts": {
"readme": "jsdoc2md --template docs/README.md --no-cache --configure .jsdoc.json src/*.js > README.md",
"test": "node --test \"test/*.spec.js\"",
"coverage": "node -e \"require('fs').mkdirSync('coverage',{recursive:true})\" && node --test --experimental-test-coverage --test-coverage-include=\"src/**\" --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=coverage/lcov.info \"test/*.spec.js\"",
"test-watch": "node --test --watch \"test/*.spec.js\"",
"prepack": "npm run build",
"postpack": "npm run clean",
"lint": "eslint \"src/*.js\" || true",
"clean": "rimraf dist lib",
"build": "cross-env NODE_ENV=\"production\" rollup -c",
"start": "npm run test-watch"
},
"files": [
"index.d.ts",
"dist/**/*",
"lib/**/*",
"src/**/*"
],
"dependencies": {
"@babel/runtime": "^8.0.0",
"@babel/runtime-corejs3": "^8.0.0",
"spark-md5": "^3.0.2"
},
"devDependencies": {
"@babel/core": "^8.0.1",
"@babel/eslint-parser": "^8.0.1",
"@babel/plugin-transform-runtime": "^8.0.1",
"@babel/preset-env": "^8.0.2",
"@eslint/js": "^10.0.1",
"@rollup/plugin-babel": "^7.1.0",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@types/node": "^26.1.1",
"chai": "^6.2.2",
"cross-env": "^10.1.0",
"eslint": "^10.7.0",
"fetch-mock": "^12.6.0",
"globals": "^17.7.0",
"jsdoc-strip-async-await": "^0.1.0",
"jsdoc-to-markdown": "^9.1.3",
"rimraf": "^6.1.3",
"rollup": "^4.62.2",
"rollup-plugin-sizes": "^1.1.0"
}
}