-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.81 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
{
"name": "trello.js",
"version": "1.2.7",
"description": "Simple Trello API Client",
"author": "Vladislav Tupikin <mrrefactoring@yandex.ru>",
"license": "MIT",
"main": "out/index.js",
"types": "out/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build && npm run test && npm run lint",
"prettier": "prettier --write src",
"doc": "typedoc --name \"Trello.js - API library\" --out docs ./src/index.ts --plugin typedoc-plugin-extras --footerDate --footerTime --footerTypedocVersion --favicon https://svgshare.com/i/bQb.svg",
"lint": "eslint src tests --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "npm run test:unit && npm run test:integration && npm run test:e2e",
"test:unit": "ava tests/unit/**/*.ts",
"test:integration": "ava --serial tests/integration/**/*.ts",
"test:e2e": "ava --serial tests/e2e/**/*.ts"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register",
"dotenv/config"
]
},
"repository": "https://github.com/MrRefactoring/trello.js",
"keywords": [
"trello",
"client",
"rest",
"api"
],
"devDependencies": {
"@types/node": "^20.12.8",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"ava": "^6.1.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.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",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typedoc-plugin-extras": "^3.0.0",
"typescript": "^5.4.5"
},
"dependencies": {
"axios": "^1.6.8",
"form-data": "^4.0.0",
"tslib": "^2.6.2"
}
}