-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
75 lines (75 loc) · 2.27 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
{
"name": "confluence.js",
"version": "1.7.4",
"description": "confluence.js is a powerful Node.JS/Browser module that allows you to interact with the Confluence API very easily",
"author": "Vladislav Tupikin <[email protected]>",
"license": "MIT",
"homepage": "https://mrrefactoring.github.io/confluence.js",
"repository": {
"type": "git",
"url": "git+https://github.com/MrRefactoring/confluence.js.git"
},
"main": "out/index.js",
"types": "out/index.d.ts",
"scripts": {
"build": "tsc",
"test": "npm run test:unit && npm run test:integration",
"prettier": "prettier --write src",
"doc": "typedoc --name \"Confluence.js - Cloud and Server API library\" --out docs ./src/index.ts --plugin typedoc-plugin-extras --footerDate --footerTime --footerTypedocVersion --favicon https://svgshare.com/i/bVi.svg",
"lint": "eslint src tests --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test:unit": "ava tests/unit",
"test:integration": "ava --timeout=2m --fail-fast --no-worker-threads -c 1 -s tests/integration/**/*.test.ts",
"code:formatting": "npm run prettier && npm run lint:fix"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"@swc-node/register",
"dotenv/config"
],
"environmentVariables": {
"SWC_NODE_PROJECT": "./tsconfig.lint.json"
}
},
"keywords": [
"confluence",
"api",
"wrapper",
"client",
"cloud",
"rest",
"wiki",
"atlassian"
],
"devDependencies": {
"@swc-node/register": "^1.9.0",
"@swc/helpers": "^0.5.8",
"@types/express": "^4.17.21",
"@types/oauth": "^0.9.4",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"ava": "^6.1.2",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.2.5",
"prettier-plugin-jsdoc": "^1.3.0",
"sinon": "^17.0.1",
"typedoc": "^0.25.12",
"typedoc-plugin-extras": "^3.0.0",
"typescript": "^5.4.4"
},
"dependencies": {
"atlassian-jwt": "^2.0.3",
"axios": "^1.6.8",
"form-data": "^4.0.0",
"oauth": "^0.10.0",
"tslib": "^2.6.2"
}
}