-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.37 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "sdc-check",
"version": "1.0.4",
"description": "Small tool to inform you about potential risks in your project dependencies list",
"keywords": [
"supply-chain-security",
"npm",
"security",
"dependencies",
"audit",
"cli"
],
"license": "MIT",
"author": "mbalabash <maksim.balabash@gmail.com>",
"engines": {
"node": ">=16.0.0"
},
"types": "./index.d.ts",
"main": "index.js",
"type": "module",
"scripts": {
"publish": "clean-publish",
"sdc-check": "node ./src/cli.js -d .",
"unit": "tsm node_modules/uvu/bin.js test/",
"test": "yarn unit && eslint . --ignore-pattern test/ && yarn sdc-check"
},
"dependencies": {
"@nodesecure/scanner": "^5.0.1",
"commander": "^11.1.0",
"lockfile-lint-api": "^5.8.0",
"nanospinner": "^1.1.0",
"pacote": "^17.0.4",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@logux/eslint-config": "^52.0.2",
"@types/lockfile-lint-api": "^5.1.5",
"@types/pacote": "^11.1.8",
"clean-publish": "^4.2.0",
"eslint": "^8.54.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-node-import": "^1.0.4",
"eslint-plugin-perfectionist": "^2.4.0",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.1.1",
"tsm": "^2.3.0",
"typescript": "^5.3.2",
"uvu": "^0.5.6"
},
"bin": {
"sdc-check": "./src/cli.js"
},
"sdc-check": {
"options": {
"daysBeforeUpgradeToNewVersion": 3
},
"errors": [
"package-is-too-new",
"lockfile-is-not-safe",
"has-os-scripts",
"dangerous-shell-commands",
"obfuscated-code",
"install-scripts"
]
},
"eslintConfig": {
"extends": "@logux/eslint-config"
},
"eslintIgnore": [
"example/index.js"
],
"prettier": {
"arrowParens": "avoid",
"quoteProps": "as-needed",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"clean-publish": {
"cleanDocs": false,
"files": [
".sdccheckignore"
],
"fields": [
"sdc-check"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mbalabash/sdc-check.git"
},
"bugs": {
"url": "https://github.com/mbalabash/sdc-check/issues"
},
"homepage": "https://github.com/mbalabash/sdc-check#readme"
}