-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
64 lines (64 loc) · 1.36 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "npmvet",
"version": "0.2.1",
"description": "A simple CLI tool for vetting npm package versions",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"run": "node dist/index.js",
"br": "npm run build && npm run run",
"prepublish": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "[email protected]:harksys/npmvet.git"
},
"author": "Andrew Hathaway <[email protected]>",
"license": "MIT",
"bin": {
"npmvet": "./dist/index.js"
},
"jest": {
"transform": {
".*": "./test/preprocessor.js"
},
"unmockedModulePathPatterns": [
"lodash",
"semver"
],
"resetModules": true,
"modulePaths": [
"<rootDir>/src/"
],
"roots": [
"./test/tests"
],
"testRegex": "^.*.(js)$",
"globals": {
"SRC_DIRECTORY": "<rootDir>/src/"
},
"moduleFileExtensions": [
"js",
"ts"
],
"collectCoverage": true
},
"devDependencies": {
"@types/blessed": "^0.1.4",
"@types/lodash": "^4.14.52",
"@types/node": "^7.0.5",
"@types/semver": "^5.3.30",
"jest": "^28.1.1",
"typescript": "^4.7.4"
},
"dependencies": {
"blessed": "^0.1.81",
"chalk": "^4.1.2",
"commander": "9.1.0",
"lodash": "^4.17.21",
"pluralize": "^6.0.0",
"semver": "^7.3.7",
"table": "^6.8.0"
}
}