-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 930 Bytes
/
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
{
"name": "@danielcobo/docs",
"version": "1.0.20",
"description": "Automate repo documentation",
"main": "./src/index.js",
"scripts": {
"test": "jest --collectCoverage",
"mutation": "npx stryker run",
"testing": "jest --watch --collectCoverage --runInBand",
"patch": "git push && npm version patch && npm publish"
},
"bin": {
"docs": "bin/docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielcobo/docs.git"
},
"keywords": [
"markdown",
"readme",
"license"
],
"author": "Daniel Cobo",
"license": "MIT",
"devDependencies": {
"@stryker-mutator/core": "^5.4.1",
"@stryker-mutator/jest-runner": "^5.4.1",
"jest": "^27.3.1"
},
"dependencies": {
"@danielcobo/err": "^1.0.7",
"@danielcobo/fs": "^1.2.2",
"chalk": "^4.1.2",
"comment-parser": "^1.2.4",
"handlebars": "^4.7.7",
"micromatch": "^4.0.4"
}
}