-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.32 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
{
"name": "sift-cli",
"version": "1.2.0",
"description": "Search and filter structured logs interactively in the terminal",
"repository": {
"type": "git",
"url": "https://github.com/elliothatch/sift"
},
"bugs": {
"url": "https://github.com/elliothatch/sift/issues"
},
"license": "MIT",
"author": {
"name": "Elliot Hatch",
"email": "[email protected]"
},
"bin": {
"sift": "./sift.js"
},
"main": "build/index.js",
"types": "declarations/index.d.ts",
"files": [
"sift.js",
"build/",
"declarations/",
"npm-shrinkwrap.json"
],
"scripts": {
"build": "node node_modules/.bin/tsc",
"clean": "rm -R build/ && rm -R declarations",
"start": "node --enable-source-maps build/index.js",
"dev": "node --enable-source-maps build/index.js scripts/dev.test.js",
"debug": "node --enable-source-maps --inspect-brk build/index.js",
"test": "node_modules/jest/bin/jest.js --coverage --verbose",
"profile": "node --prof build/index.js",
"shrinkwrap": "./node_modules/.bin/synp --source-file yarn.lock && npm shrinkwrap"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^20.9.4",
"freshlog": "^0.2.4",
"jest": "^27.5.1",
"synp": "^1.9.9",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"fuzzysort": "^1.1.4",
"rxjs": "^7.5.3",
"terminal-kit": "2.4.0"
}
}