-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 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
{
"name": "markdown-autodocs",
"version": "1.0.134",
"repository": {
"type": "git",
"url": "https://github.com/dineshsonachalam/markdown-autodocs"
},
"author": "Dinesh Sonachalam",
"license": "MIT",
"main": "index.js",
"bin": {
"markdown-autodocs": "index.js"
},
"files": [
"index.js",
"utils/*"
],
"jest": {
"collectCoverage": true,
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"scripts": {
"test": "wget -c -N https://gist.githubusercontent.com/dineshsonachalam/17965bed1d67ea51ee9c80473f70f078/raw/7fa0080ad03fb1e706a5d07f09c90cc05402d73f/TEST_README.md https://gist.githubusercontent.com/dineshsonachalam/db8cec9c076d2a423b28a09d105cd8c6/raw/52865d53575287adbdf203c03acd705c69938a6a/contributors.json && jest test/**.test.js",
"coverage": "jest test/**.test.js --coverage"
},
"type": "module",
"dependencies": {
"@actions/core": "^1.5.0",
"@actions/github": "^5.0.0",
"commander": "^8.1.0",
"cross-fetch": "^3.1.4",
"log4js": "^6.3.0",
"markdown-magic": "^2.6.0",
"table-builder": "^2.1.1",
"yaml": "^1.10.2"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "^7.15.3",
"babel-core": "^6.26.3",
"babel-jest": "^27.0.6",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"doctoc": "^2.1.0",
"eslint": "^7.32.0",
"jest": "^27.0.6"
}
}