-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.06 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.06 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "confluence.js",
"version": "2.1.0",
"description": "confluence.js is a powerful Node.JS/Browser module that allows you to interact with the Confluence API very easily",
"author": "Vladislav Tupikin <vladislav.tupikin@icloud.com>",
"license": "MIT",
"homepage": "https://mrrefactoring.github.io/confluence.js",
"repository": {
"type": "git",
"url": "git+https://github.com/MrRefactoring/confluence.js.git"
},
"type": "module",
"types": "./dist/esm/types/index.d.ts",
"module": "./dist/esm/index.mjs",
"main": "./dist/cjs/index.cjs",
"exports": {
".": {
"types": "./dist/esm/types/index.d.ts",
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs"
},
"./*": {
"types": "./dist/esm/types/*.d.ts",
"require": "./dist/cjs/*.cjs",
"import": "./dist/esm/*.mjs"
},
"./package.json": "./package.json"
},
"keywords": [
"confluence",
"confluence-api",
"confluence-client",
"atlassian-confluence",
"confluence-cloud",
"confluence-server",
"nodejs",
"typescript",
"wiki",
"content-management",
"automation",
"rest-api"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "rollup -c rollup.config.ts --configPlugin typescript",
"test": "pnpm run test:unit && pnpm run test:integration",
"prettier": "prettier --write src",
"doc": "typedoc --name \"Confluence.js - Cloud and Server API library\" --out docs ./src/index.ts --favicon https://bad37fb3-cb50-4e0b-9035-a3e09e8afb3b.selstorage.ru/confluence.js%2Ffavicon.svg",
"lint": "eslint --ext .ts src tests",
"lint:fix": "pnpm run lint --fix",
"test:unit": "vitest run tests/unit --minWorkers=1 --maxWorkers=8 --sequence.concurrent",
"test:integration": "vitest run tests/integration --bail=1 --no-file-parallelism --max-concurrency 1 -c vitest.config.mts --hookTimeout 100000 --testTimeout 100000",
"replace:wiki-rest": "grep -rl '/wiki/rest' src/api | xargs sed -i '' 's|/wiki/rest||g'",
"replace:all": "pnpm run replace:wiki-rest",
"code:formatting": "pnpm run replace:all && pnpm run prettier && pnpm run lint:fix"
},
"dependencies": {
"@atlassian/atlassian-jwt": "^2.2.0",
"axios": "^1.10.0",
"form-data": "^4.0.3",
"oauth": "^0.10.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"@stylistic/eslint-plugin": "^5.2.0",
"@types/express": "^4.17.23",
"@types/node": "^20.19.8",
"@types/oauth": "^0.9.6",
"dotenv": "^17.2.0",
"eslint": "^9.31.0",
"globals": "^16.3.0",
"jiti": "^2.4.2",
"prettier": "^3.6.2",
"prettier-plugin-jsdoc": "^1.3.3",
"rollup": "^4.45.1",
"rollup-plugin-esnext-to-nodenext": "^1.0.1",
"rollup-plugin-node-externals": "^8.0.1",
"tslib": "^2.8.1",
"typedoc": "^0.28.7",
"typescript": "^5.8.3",
"typescript-eslint": "^8.37.0",
"vitest": "^3.2.4"
}
}