-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.56 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.56 KB
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
{
"name": "clitt",
"version": "0.2.0",
"description": "Command line time tracker",
"homepage": "https://github.com/ice8lue/clitt#readme",
"bugs": {
"url": "https://github.com/ice8lue/clitt/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ice8lue/clitt.git"
},
"author": {
"name": "Frank Adler",
"url": "https://adfr.io"
},
"private": false,
"bin": {
"clitt": "bin/clitt"
},
"scripts": {
"format": "prettier --write **/*.{js,ts,tsx,json}",
"lint": "tslint -p .",
"clean-build": "rm -rf ./build",
"compile": "tsc -p .",
"build": "yarn format && yarn lint && yarn clean-build && yarn compile",
"test": "jest",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage"
},
"files": [
"tsconfig.json",
"tslint.json",
"build",
"LICENSE",
"readme.md",
"bin"
],
"license": "MIT",
"dependencies": {
"@types/uuid": "^8.0.0",
"gluegun": "^4.0.1",
"lowdb": "^1.0.0",
"table": "^6.0.1",
"ts-node": "^9.0.0",
"typescript": "3.9.7",
"uuid": "^8.1.0"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/lowdb": "^1.0.9",
"@types/node": "^14.0.5",
"jest": "^25.1.0",
"pkg": "^4.4.0",
"prettier": "^2.0.2",
"ts-jest": "^25.0.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^9.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"prettier": {
"semi": true,
"singleQuote": true
}
}