This repository has been archived by the owner on Nov 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.43 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
{
"name": "confluence-content-extractor",
"version": "1.5.1",
"description": "confluence content extractor",
"bin": {
"confsite": "dist/index.js"
},
"scripts": {
"build": "tsc --watch",
"test": "jest --watchAll --collect-coverage",
"ci:build": "tsc",
"ci:test": "jest --passWithNoTests",
"format:check": "prettier --check .",
"format": "prettier --check --write .",
"check-updates": "npm-check-updates -u"
},
"files": [
"dist"
],
"main": "dist/index",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/viqueen/confluence-content-extractor.git"
},
"keywords": [
"confluence",
"content",
"extractor"
],
"author": "Hasnae R.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/viqueen/confluence-content-extractor/issues"
},
"homepage": "https://github.com/viqueen/confluence-content-extractor#readme",
"devDependencies": {
"@atlaskit/adf-utils": "^17.1.2",
"@types/jest": "^28.1.8",
"@types/node": "^18.7.14",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"axios": "^0.27.2",
"commander": "^9.4.0",
"dotenv": "^16.0.2",
"husky": "^8.0.1",
"jest": "^28.1.3",
"npm-check-updates": "^16.0.6",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
}
}