-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.5 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
{
"name": "jsdoc-tests",
"version": "1.2.1",
"description": "A JSDoc test tool for documentation-driven quality",
"source": "src/index.ts",
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.module.js",
"scripts": {
"build": "microbundle -f es,cjs",
"dev": "microbundle watch",
"clean": "rimraf dist",
"test": "jest",
"commit": "yarn git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/testkits/jsdoc-tests.git"
},
"keywords": [
"documentation-driven quality",
"jsdoc-test",
"jsdoc-tests",
"jest",
"testing-tool",
"testing",
"jsdoc"
],
"author": "unadlib",
"license": "MIT",
"bugs": {
"url": "https://github.com/testkits/jsdoc-tests/issues"
},
"homepage": "https://github.com/testkits/jsdoc-tests#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"commitizen": "^4.3.1",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"microbundle": "^0.15.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"jest": {
"preset": "ts-jest"
},
"dependencies": {
"@babel/parser": "^7.26.2",
"markdown-it": "^14.1.0"
}
}