-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "@nuwcdivnpt/stigman-watcher",
"version": "1.4.6",
"description": "CLI that watches a path for STIG test result files on behalf of a STIG Manager Collection.",
"main": "index.js",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NUWCDIVNPT/stigman-watcher.git"
},
"bin": {
"stigman-watcher": "index.js"
},
"scripts": {
"test": "c8 --reporter=html --reporter=text mocha './test/**/*.test.js'",
"test:watch": "nodemon --ext 'js' --exec 'npm test'"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@nuwcdivnpt/stig-manager-client-modules": "^1.4.3",
"atob": "^2.1.2",
"better-queue": "^3.8.10",
"chokidar": "^3.5.1",
"commander": "^7.2.0",
"dotenv": "^8.2.0",
"fast-glob": "^3.3.2",
"got": "^11.8.2",
"jsonwebtoken": "^9.0.0",
"n-readlines": "^1.0.1",
"prompt-sync": "4.1.6",
"semver": "^7.3.5",
"serialize-error": "^8.0.1",
"winston": "^3.3.3"
},
"devDependencies": {
"c8": "^9.1.0",
"chai": "^5.0.3",
"esbuild": "^0.20.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.3"
}
}