forked from MrRefactoring/trello.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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.2",
"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/**/*.ts",
"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": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"ava": "^4.0.1",
"dotenv": "^16.0.0",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"prettier": "^2.5.1",
"prettier-plugin-jsdoc": "^0.3.30",
"ts-node": "^10.5.0",
"typedoc": "^0.22.11",
"typedoc-plugin-extras": "^2.2.3",
"typescript": "^4.5.5"
},
"dependencies": {
"axios": "^0.26.0",
"form-data": "^4.0.0",
"tslib": "^2.3.1"
}
}