forked from snyk/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.27 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
{
"name": "@snyk/protect",
"version": "1.0.0-monorepo",
"description": "Snyk protect library and utility",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"help",
"dist",
"bin",
"SECURITY.md",
"LICENSE",
"README.md"
],
"directories": {
"lib": "src",
"test": "test"
},
"bin": {
"snyk-protect": "bin/snyk-protect"
},
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsc",
"test": "npm run test:unit && npm run test:acceptance",
"test:unit": "jest \"/test/unit/((.+)/)*[^/]+\\.spec\\.ts\"",
"test:acceptance": "jest \"/test/acceptance/((.+)/)*[^/]+\\.spec\\.ts\"",
"test:smoke": "jest \"/test/acceptance/((.+)/)*[^/]+\\.smoke\\.spec\\.ts\"",
"format": "prettier --write '{src,test,scripts}/**/*.{js,ts}'"
},
"keywords": [
"security",
"vulnerabilities",
"advisories",
"audit",
"snyk",
"scan",
"docker",
"container",
"scanning"
],
"author": "snyk.io",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/snyk/snyk.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"devDependencies": {
"cross-spawn": "^6.0.5",
"fs-extra": "^9.1.0"
}
}