-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
69 lines (69 loc) · 2.28 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
{
"name": "zotero-api-client",
"version": "0.46.0",
"description": "A lightweight, minimalistic Zotero API client",
"repository": "https://github.com/tnajdek/zotero-api-client.git",
"type": "module",
"main": "lib/main-node.cjs",
"browser": "lib/main.cjs",
"esnext": "src/main.js",
"umd:main": "dist/zotero-api-client.js",
"unpkg": "dist/zotero-api-client.js",
"author": "Tom Najdek",
"license": "AGPL-3.0",
"engines": {
"node": ">= 18.0.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"browserslist": "firefox >= 68, chrome >= 67, edge >= 15, safari >= 11, last 2 versions, not dead, not ie 11, not ie 10",
"scripts": {
"readme": "jsdoc2md --template docs/README.md --no-cache --configure .jsdoc.json src/*.js > README.md",
"test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --no-warnings=ExperimentalWarning\" jest",
"coverage": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --no-warnings=ExperimentalWarning\" jest --coverage",
"test-watch": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --no-warnings=ExperimentalWarning\" jest --watchAll",
"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": [
"dist/**/*",
"lib/**/*",
"src/**/*"
],
"dependencies": {
"@babel/runtime": "^7.26.0",
"@babel/runtime-corejs3": "^7.26.0",
"cross-fetch": "^4.0.0",
"spark-md5": "^3.0.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.4",
"c8": "^10.1.2",
"chai": "^5.1.2",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"fetch-mock": "<10.0.0",
"jest": "^29.7.0",
"jsdoc-strip-async-await": "^0.1.0",
"jsdoc-to-markdown": "^9.0.5",
"rimraf": "^6.0.1",
"rollup": "^4.27.3",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-sizes": "^1.0.6"
}
}