-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
85 lines (85 loc) · 2.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "snyk-licenses-texts",
"description": "Snyk Licenses Texts",
"main": "dist/index.js",
"scripts": {
"format:check": "prettier --check '{''{lib,test}/!(test/**/fixtures)/**/*,*}.{js,ts,json,yml}'",
"format": "prettier --write '{''{lib,test}/!(test/**/fixtures)/**/*,*}.{js,ts,json,yml}'",
"lint": "npm run format:check && npm run lint:eslint",
"lint:eslint": "eslint --cache '{lib,test}/**/*.ts'",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest",
"test:coverage": "npm run test:unit -- --coverage",
"test:watch": "tsc-watch --onSuccess 'npm run test:unit'",
"build": "tsc && npm run copy:templates",
"build-watch": "tsc -w && npm run copy:templates",
"prepare": "npm run build",
"snyk-test": "snyk test",
"copy:templates": "cpx 'src/**/*.{hbs,html}' ./dist"
},
"bin": {
"snyk-licenses-report": "dist/index.js"
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/snyk-tech-services/snyk-licenses-texts"
},
"author": "Snyk Tech Services",
"license": "Apache-2.0",
"engines": {
"node": ">=14"
},
"files": [
"bin",
"dist"
],
"homepage": "https://github.com/snyk-tech-services/snyk-licenses-texts#readme",
"dependencies": {
"@snyk/configstore": "3.2.0-rc1",
"cheerio": "1.0.0-rc.12",
"debug": "4.3.4",
"handlebars": "4.7.7",
"lodash": "4.17.21",
"node-fetch": "2.6.7",
"p-map": "5.5.0",
"puppeteer": "18.2.1",
"snyk-api-ts-client": "1.10.0",
"snyk-config": "5.1.0",
"snyk-request-manager": "1.8.0",
"source-map-support": "0.5.21",
"tslib": "2.4.0",
"yargs": "17.6.0"
},
"devDependencies": {
"@semantic-release/exec": "5.0.0",
"@types/cheerio": "0.22.31",
"@types/jest": "29.1.2",
"@types/lodash": "4.14.186",
"@types/node": "18.8.4",
"@typescript-eslint/eslint-plugin": "5.40.0",
"@typescript-eslint/parser": "5.40.0",
"cpx": "1.5.0",
"eslint": "8.18.0",
"jest": "26.4.2",
"pkg": "5.8.0",
"prettier": "2.7.1",
"semantic-release": "17.3.0",
"ts-jest": "25.5.1",
"ts-node": "8.6.2",
"tsc-watch": "^4.1.0",
"typescript": "4.7.4"
},
"pkg": {
"scripts": [
"dist/**/**/*.js"
],
"targets": [
"node10"
],
"assets": [
"dist/lib/**/**/*.hbs",
"dist/lib/**/**/*.html"
]
}
}