forked from documentationjs/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.15 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "documentation",
"description": "a documentation generator",
"version": "13.2.5",
"author": "Tom MacWright",
"homepage": "https://documentation.js.org",
"type": "module",
"bin": {
"documentation": "./bin/documentation.js"
},
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/generator": "^7.16.0",
"@babel/parser": "^7.16.3",
"@babel/traverse": "^7.16.3",
"@babel/types": "^7.16.0",
"chalk": "^4.1.2",
"chokidar": "^3.4.0",
"diff": "^5.0.0",
"doctrine-temporary-fork": "2.1.0",
"git-url-parse": "^11.1.2",
"github-slugger": "1.4.0",
"glob": "^7.1.2",
"globals-docs": "^2.4.0",
"highlight.js": "^11.3.1",
"ini": "^2.0.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"mdast-util-find-and-replace": "^2.1.0",
"mdast-util-inject": "^1.1.0",
"micromark-util-character": "^1.1.0",
"parse-filepath": "^1.0.2",
"pify": "^5.0.0",
"read-pkg-up": "^9.0.0",
"remark": "^14.0.1",
"remark-gfm": "^3.0.1",
"remark-html": "^15.0.0",
"remark-reference-links": "^6.0.0",
"remark-toc": "^8.0.1",
"konan": "^2.1.1",
"resolve": "^1.20.0",
"strip-json-comments": "^4.0.0",
"unist-builder": "^3.0.0",
"unist-util-visit": "^4.1.0",
"vfile": "^5.2.0",
"vfile-reporter": "^7.0.2",
"vfile-sort": "^3.0.0",
"yargs": "^17.2.1"
},
"optionalDependencies": {
"@vue/compiler-sfc": "^3.0.11",
"vue-template-compiler": "^2.6.12"
},
"devDependencies": {
"chdir": "0.0.0",
"cz-conventional-changelog": "3.3.0",
"documentation-schema": "0.0.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"fs-extra": "^10.0.0",
"husky": "^4.3.8",
"jest": "^27.3.1",
"json-schema": "^0.4.0",
"lint-staged": "^12.0.2",
"mock-fs": "^5.1.2",
"prettier": "^2.4.1",
"standard-version": "^9.3.2",
"tmp": "^0.2.1"
},
"keywords": [
"documentation",
"formatter",
"jsdoc",
"jsdoc3",
"parser",
"website"
],
"license": "ISC",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "[email protected]:documentationjs/documentation.git"
},
"scripts": {
"build": "npm run doc",
"release": "standard-version",
"format": "prettier --write '{src,__tests__,declarations,bin,default_theme}/**/*.js'",
"doc": "node ./bin/documentation.js build src/index.js -f md --access=public > docs/NODE_API.md",
"self-lint": "node ./bin/documentation.js lint src",
"test": "eslint . && node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test-ci": "eslint . && node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"utils.js",
"fixture"
],
"transform": {},
"collectCoverage": true,
"testEnvironment": "jest-environment-node"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=14"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}