|
1 | 1 | {
|
2 | 2 | "name": "confluence.js",
|
3 |
| - "version": "1.4.0", |
| 3 | + "version": "1.4.1", |
4 | 4 | "description": "confluence.js is a powerful Node.JS/Browser module that allows you to interact with the Confluence API very easily",
|
5 | 5 | "author": "Vladislav Tupikin <[email protected]>",
|
6 | 6 | "license": "MIT",
|
|
16 | 16 | "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",
|
17 | 17 | "lint": "eslint src --ext .ts",
|
18 | 18 | "lint:fix": "npm run lint -- --fix",
|
19 |
| - "test:unit": "ava --timeout=2m tests/unit", |
| 19 | + "test:unit": "ava tests/unit", |
20 | 20 | "test:e2e": "ava --timeout=2m --fail-fast --no-worker-threads -c 1 -s tests/e2e/**/*.test.ts"
|
21 | 21 | },
|
22 | 22 | "ava": {
|
23 | 23 | "extensions": [
|
24 | 24 | "ts"
|
25 | 25 | ],
|
26 | 26 | "require": [
|
27 |
| - "ts-node/register", |
| 27 | + "@swc-node/register", |
28 | 28 | "dotenv/config"
|
29 |
| - ] |
| 29 | + ], |
| 30 | + "environmentVariables": { |
| 31 | + "SWC_NODE_PROJECT": "./tsconfig.lint.json" |
| 32 | + } |
30 | 33 | },
|
31 | 34 | "keywords": [
|
32 | 35 | "confluence",
|
|
38 | 41 | "atlassian"
|
39 | 42 | ],
|
40 | 43 | "devDependencies": {
|
| 44 | + "@swc-node/register": "^1.4.2", |
41 | 45 | "@types/express": "^4.17.13",
|
42 | 46 | "@types/oauth": "^0.9.1",
|
43 | 47 | "@types/sinon": "^10.0.11",
|
44 |
| - "@typescript-eslint/eslint-plugin": "^5.17.0", |
45 |
| - "@typescript-eslint/parser": "^5.17.0", |
46 |
| - "ava": "^4.1.0", |
| 48 | + "@typescript-eslint/eslint-plugin": "^5.21.0", |
| 49 | + "@typescript-eslint/parser": "^5.21.0", |
| 50 | + "ava": "^4.2.0", |
47 | 51 | "dotenv": "^16.0.0",
|
48 |
| - "eslint": "^8.12.0", |
| 52 | + "eslint": "^8.14.0", |
49 | 53 | "eslint-config-airbnb": "^19.0.4",
|
50 |
| - "eslint-config-airbnb-typescript": "^16.2.0", |
51 |
| - "eslint-import-resolver-typescript": "^2.7.0", |
52 |
| - "eslint-plugin-import": "^2.25.4", |
53 |
| - "prettier": "^2.6.1", |
54 |
| - "prettier-plugin-jsdoc": "^0.3.36", |
55 |
| - "sinon": "^13.0.1", |
56 |
| - "ts-node": "^10.7.0", |
57 |
| - "typedoc": "^0.22.13", |
| 54 | + "eslint-config-airbnb-typescript": "^17.0.0", |
| 55 | + "eslint-import-resolver-typescript": "^2.7.1", |
| 56 | + "eslint-plugin-import": "^2.26.0", |
| 57 | + "prettier": "^2.6.2", |
| 58 | + "prettier-plugin-jsdoc": "^0.3.38", |
| 59 | + "sinon": "^13.0.2", |
| 60 | + "typedoc": "^0.22.15", |
58 | 61 | "typedoc-plugin-extras": "^2.2.3",
|
59 | 62 | "typescript": "^4.6.3"
|
60 | 63 | },
|
61 | 64 | "dependencies": {
|
62 | 65 | "atlassian-jwt": "^2.0.2",
|
63 |
| - "axios": "^0.26.1", |
| 66 | + "axios": "^0.27.0", |
64 | 67 | "oauth": "^0.9.15",
|
65 |
| - "tslib": "^2.3.1" |
| 68 | + "tslib": "^2.4.0" |
66 | 69 | }
|
67 | 70 | }
|
0 commit comments