forked from kshehadeh/ts-confluence-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·37 lines (37 loc) · 946 Bytes
/
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
{
"name": "@unleash-tech/ts-confluence-client",
"version": "1.0.0",
"description": "Modern confluence client written in Typescript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"jest": "^27.3.1",
"prettier": "~2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"tslint": "~5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "~6.2.0",
"tsutils": "~3.21.0",
"typescript": "~4.4.4"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json"
},
"author": "Karim Shehadeh",
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.24.0",
"dotenv": "^10.0.0",
"form-data": "^4.0.0",
"tslib": "~2.3.1"
}
}