-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 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
{
"name": "ploc",
"version": "0.9.1",
"description": "PL/SQL code to doc converter",
"main": "ploc.js",
"bin": {
"ploc": "ploc-cli.js"
},
"scripts": {
"test_normal": "echo \"Please check output tests/*.md!\" && npx ploc -d -i \"tests/*.*(pks|sql)\"",
"test_timestamp": "echo \"Please check output tests/*.md!\" && npx ploc -d -i \"tests/*.*(pks|sql)\" --timestamp",
"test_autoHeaderIds": "echo \"Please check output tests/*.md!\" && npx ploc -d -i \"tests/*.*(pks|sql)\" --timestamp --autoHeaderIds \"float: right;\"",
"test_tocStyles": "echo \"Please check output tests/*.md!\" && npx ploc -d -i \"tests/*.*(pks|sql)\" --timestamp --tocStyles \"float: right;\"",
"test_autoHeaderIds_and_tocStyles": "echo \"Please check output tests/*.md!\" && npx ploc -d -i \"tests/*.*(pks|sql)\" --timestamp --autoHeaderIds --tocStyles \"float: right;\"",
"build": "npx markdown-toc -i --maxdepth 2 README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ogobrecht/ploc.git"
},
"keywords": [
"PL/SQL",
"Doc",
"Generator",
"Converter",
"Markdown"
],
"author": "Ottmar Gobrecht",
"license": "MIT",
"bugs": {
"url": "https://github.com/ogobrecht/ploc/issues"
},
"homepage": "https://github.com/ogobrecht/ploc#readme",
"dependencies": {
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"minimist": "^1.2.8",
"npm-check-updates": "^17.1.12",
"regex": "^5.0.2"
},
"devDependencies": {
"markdown-toc": "^1.2.0"
}
}