-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
67 lines (67 loc) · 1.67 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
61
62
63
64
65
66
67
{
"name": "bluehawk",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-university/Bluehawk"
},
"version": "1.5.0",
"description": "A markup language and tool for extracting code examples, checkpointing tutorials, and dynamically transforming text",
"keywords": [
"docs",
"docs-as-code",
"docs tools",
"tutorials",
"code examples",
"code snippets"
],
"homepage": "https://github.com/mongodb-university/Bluehawk#readme",
"bugs": {
"url": "https://github.com/mongodb-university/Bluehawk/issues"
},
"main": "./build/src",
"bin": {
"bluehawk": "./build/src/main.js"
},
"scripts": {
"clean": "rm -rf build",
"build": "tsc -b",
"watch": "tsc -b -w",
"test": "jest",
"verbose": "jest --verbose",
"coverage": "jest --coverage",
"integration": "./integrationTests/runTests.sh",
"docs": "cd docs && npm i && npm run build",
"release": "release-it"
},
"author": "MongoDB Developer Education Team",
"license": "Apache-2.0",
"dependencies": {
"ajv": "^8",
"chevrotain": "^10",
"ignore": "^5",
"isbinaryfile": "^5",
"magic-string": "^0.27",
"memfs": "^3",
"source-map": "^0.7",
"yargs": "^17"
},
"devDependencies": {
"@babel/preset-typescript": "^7.0.0",
"@types/jest": "^29",
"@types/node": "^18",
"@types/yargs": "^17",
"@typescript-eslint/eslint-plugin": "^5",
"eslint": "^8",
"eslint-config-prettier": "^8",
"eslint-plugin-tsdoc": "^0.2.0",
"jest": "^29",
"prettier": "^2",
"release-it": "^16.1.5",
"ts-jest": "^29",
"typedoc": "^0.23",
"typescript": "^4"
},
"prettier": {
"semi": true
}
}