-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.72 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.72 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
{
"name": "example-extractor",
"version": "0.0.4",
"type": "module",
"description": "Extract documentation examples from real source code",
"main": "dist/index.js",
"bin": {
"example-extractor": "example-extractor.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf {dist,package,extracted-examples} && tsc --project tsconfig.build.json",
"postbuild": "attw --ignore-rules cjs-resolves-to-esm --pack",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format:base": "prettier --parser typescript \"src/**/*.ts\"",
"format:check": "npm run format:base -- --list-different",
"format:fix": "npm run format:base -- --write "
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/case-contract-testing/doc-extractor.git"
},
"keywords": [
"documentation",
"examples"
],
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/TimothyJones"
},
"author": "Timothy Jones <timothy.l.jones@gmail.com> (https://github.com/TimothyJones)",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/case-contract-testing/doc-extractor/issues"
},
"homepage": "https://github.com/case-contract-testing/doc-extractor#readme",
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@contract-case/case-maintainer-config": "^0.27.2",
"@contract-case/eslint-config-case-maintainer": "^0.27.2",
"eslint": "^9.38.0",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.1",
"mkdirp": "^3.0.1",
"sanitize-filename": "^1.6.3"
}
}