forked from MrRefactoring/jira.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 3.19 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
76
77
78
79
80
81
82
83
{
"name": "jira.js",
"version": "2.15.13",
"description": "jira.js is a powerful Node.JS/Browser module that allows you to interact with the Jira API very easily",
"main": "out/index.js",
"types": "out/index.d.ts",
"repository": "https://github.com/MrRefactoring/jira.js.git",
"author": "Vladislav Tupikin <[email protected]>",
"license": "MIT",
"keywords": [
"atlassian",
"jira",
"api",
"agile",
"cloud",
"serviceDesk",
"wrapper",
"client",
"rest"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build && npm run lint && npm run test",
"prettier": "prettier --write src/**/*.ts",
"lint": "npm run lint:tests && npm run lint:src:agile && npm run lint:src:clients && npm run lint:src:services && npm run lint:src:version2 && npm run lint:src:version3 && npm run lint:src:files",
"lint:tests": "npm run lint:base -- tests",
"lint:src:agile": "npm run lint:base -- src/agile",
"lint:src:clients": "npm run lint:base -- src/clients",
"lint:src:services": "npm run lint:base -- src/services",
"lint:src:version2": "npm run lint:base -- src/version2",
"lint:src:version3": "npm run lint:base -- src/version3",
"lint:src:serviceDesk": "npm run lint:base -- src/serviceDesk",
"lint:src:files": "npm run lint:base -- src/*.ts",
"lint:base": "eslint --ext .ts",
"lint:fix": "npm run lint:tests -- --fix && npm run lint:src:agile -- --fix && npm run lint:src:clients -- --fix && npm run lint:src:services -- --fix && npm run lint:src:version2 -- --fix && npm run lint:src:version3 -- --fix && npm run lint:src:serviceDesk -- --fix && npm run lint:src:files -- --fix",
"doc": "typedoc --name \"Jira.js - Jira Cloud API library\" --out docs ./src/index.ts --plugin typedoc-plugin-extras --footerDate --footerTime --footerTypedocVersion --favicon https://svgshare.com/i/bHF.svg",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "ava tests/unit --timeout=2m -с 8",
"test:integration": "ava --timeout=2m --fail-fast --no-worker-threads -c 1 -s tests/integration/**/*.test.ts"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"@swc-node/register",
"dotenv/config"
],
"environmentVariables": {
"SWC_NODE_PROJECT": "./tsconfig.lint.json"
}
},
"devDependencies": {
"@swc-node/register": "^1.5.4",
"@types/express": "^4.17.14",
"@types/node": "^18.11.5",
"@types/oauth": "^0.9.1",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"ava": "^5.0.1",
"dotenv": "^16.0.3",
"eslint": "^8.26.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-sort-exports": "^0.7.0",
"prettier": "^2.7.1",
"prettier-plugin-jsdoc": "^0.4.2",
"sinon": "^14.0.1",
"typedoc": "^0.23.18",
"typedoc-plugin-extras": "^2.3.0",
"typescript": "^4.8.4"
},
"dependencies": {
"atlassian-jwt": "^2.0.2",
"axios": "^0.27.2",
"form-data": "^4.0.0",
"oauth": "^0.10.0",
"tslib": "^2.4.0"
}
}