-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1003 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
40
41
42
43
44
45
46
{
"scripts": {
"build": "tsc",
"compile": "tsc -w",
"test": "jest ./dist --passWithNoTests"
},
"bin": {
"manipulator": "./dist/bin/manipulator.js"
},
"dependencies": {
"commander": "^7.0.0",
"csv-stringify": "^5.6.1",
"dateformat": "^4.5.1",
"highlight.js": "^11.1.0"
},
"devDependencies": {
"@types/dateformat": "^3.0.1",
"@types/node": "^14.18.21",
"jest": "^28.1.2"
},
"name": "txmanipulator",
"description": "",
"version": "3.0.2",
"main": "./dist/txmanipulator.js",
"repository": {
"type": "git",
"url": "git+https://github.com/janmerhar/txmanipulator.git"
},
"keywords": [],
"author": "Jan Merhar",
"license": "",
"bugs": {
"url": "https://github.com/janmerhar/txmanipulator/issues"
},
"homepage": "https://github.com/janmerhar/txmanipulator#readme",
"nodemonConfig": {
"ignore": [
"*.csv",
"*.md",
"*.txt"
]
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}