-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·80 lines (80 loc) · 1.8 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
{
"name": "dirstamp",
"version": "1.1.1",
"description": "A program that takes timestamps of directory structures",
"main": "./out/dirstamp.js",
"scripts": {
"xpose": "showdown makehtml -i README.md -o readme.htm",
"start": "node ./out/dirstamp.js",
"build": "npx tsc",
"mangen": "marked-man --breaks --headerIds --langPrefix javascript --smartLists --smartypants --xhtml --section 1 --manual Help --ver v1.1.1 README.md > man/dirstamp.1"
},
"bin": {
"dirstamp": "./out/dirstamp.js"
},
"types": "./typing/dirstamp.d.ts",
"keywords": [
"directory",
"timestamp",
"backup",
"klaw",
"typescript",
"colored"
],
"author": "V. H.",
"license": "ISC",
"dependencies": {
"chalk": "^2.4.2",
"klaw": "^3.0.0",
"strip-ansi": "^5.2.0"
},
"preferGlobal": true,
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/klaw": "^2.1.1",
"@types/strip-ansi": "^3.0.0",
"showdown": "^1.9.0",
"typescript": "^3.5.1"
},
"homepage": "https://github.com/Valen-H/Dirstamp#README.md",
"bugs": {
"url": "https://github.com/Valen-H/Dirstamp/issues",
"email": "[email protected]"
},
"contributors": [],
"files": [
"*"
],
"man": [
"./man/dirstamp.1"
],
"directories": {
"lib": "./lib",
"bin": "./bin",
"man": "./man",
"doc": "./doc",
"example": "./test",
"test": "./test"
},
"typings": "lib/typings/",
"repository": {
"type": "git",
"url": "git://github.com/Valen-H/Dirstamp.git",
"directory": "./"
},
"config": {
"port": 8080
},
"peerDependencies": {},
"optionalDependencies": {},
"engines": {
"node": ">=12.0.0",
"npm": ">=3.0.0"
},
"engineStrict": false,
"os": [],
"cpu": [],
"private": false,
"publishConfig": {},
"bundleDependencies": []
}