-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.63 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
{
"name": "summary-more",
"version": "3.5.0",
"description": "summary-more is a tool that search for all *.md files in your project and list them in the README.md file.",
"license": "MIT",
"scripts": {
"lint": "eslint src/ --ext .ts",
"build": "tsc -p tsconfig.build.json",
"pre-test": "mkdir -p fixtures/empty/",
"test": "npm run pre-test && mocha --config=./mocharc.json",
"test-watch": "npm run pre-test && mocha --config=./mocharc.json"
},
"type": "module",
"author": {
"name": "Alessandro (silversonicaxel) Rabitti",
"url": "https://github.com/silversonicaxel"
},
"main": "dist/index.js",
"bin": {
"summary-more": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/silversonicaxel/summary-more"
},
"homepage": "https://github.com/silversonicaxel/summary-more#readme",
"bugs": {
"url": "https://github.com/silversonicaxel/summary-more/issues"
},
"engines": {
"node": ">=10.12.0",
"npm": ">= 6.0.0"
},
"keywords": [
"readme",
"documentation",
"readme more",
"summary",
"index"
],
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/commander": "^2.12.2",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.9",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"chai": "^5.1.1",
"eslint": "^8.57.0",
"mocha": "^10.6.0",
"sinon": "^18.0.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"tslint": "^6.1.2",
"typescript": "^5.5.3"
},
"dependencies": {
"commander": "^12.1.0"
}
}