-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.53 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.53 KB
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": "dash-docset-aws-cloudformation",
"version": "0.0.1",
"description": "Dash docset for AWS CloudFormation",
"repository": {
"type": "git",
"url": "git@github.com:ServerlessOpsIO/dash-docset-aws-cloudformation.git"
},
"author": {
"name": "Tom McLaughlin",
"email": "tom@serverlessops.io"
},
"license": "BSD-2-Clause",
"type": "module",
"exports": "./index.js",
"engines": {
"node": ">=20.0.0"
},
"packageManager": "yarn@4.4.1",
"scripts": {
"clean": "rm -rf dist",
"build": "yarn run clean && tsc",
"generate": "node dist/src/index.js",
"generate::local": "DOC_ROOT=http://localhost:3000 yarn run generate",
"test": "jest",
"package": "cd docbuild && tar zcvf aws-cloudformation.docset.tgz aws-cloudformation.docset",
"site::fetch": "node dist/src/util/fetchSite.js",
"site::serve": "node dist/src/util/serveSite.js"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/express": "^4",
"@types/fs-extra": "^11",
"@types/jest": "^29.5.13",
"@types/jsonpath": "^0.2.4",
"@types/node": "^22.5.5",
"@types/sqlite3": "^3.1.11",
"express": "^4.21.1",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.6.2"
},
"dependencies": {
"cheerio": "^1.0.0",
"fs-extra": "^11.2.0",
"got": "^14.4.4",
"highlight.js": "^11.10.0",
"jsonpath": "^1.1.1",
"path": "^0.12.7",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
}
}