-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "little-log-scan",
"version": "2.3.0-dev",
"description": "Scan log files for suspicious strings",
"homepage": "https://github.com/warriordog/little-log-scan",
"bugs": "https://github.com/warriordog/little-log-scan/issues",
"author": "Hazel Koehler <[email protected]> (https://github.com/warriordog)",
"repository": "github:warriordog/little-log-scan",
"license": "MPL-2.0",
"types": "./dist/package/index.d.ts",
"main": "./dist/package/index.js",
"bin": "./bin/cli",
"files": [
"README.md",
"LICENSE",
"CHANGES.md",
"dist/package/",
"bin/cli"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-package": "tsc -b",
"build-standalone": "npm run build-package && node bin/build-standalone",
"cli": "tsc -b && node bin/cli",
"prepublish": "npm run build-package"
},
"keywords": [
"scan",
"log"
],
"engines": {
"node": ">=16"
},
"dependencies": {
"tiny-typed-emitter": "2.1.0"
},
"devDependencies": {
"@types/node": "16.11.39",
"typescript": "4.7.3"
}
}