-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
47 lines (47 loc) · 1.28 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
{
"name": "dotnet-deps-parser",
"description": "Generate a dep tree given a collection of manifests",
"main": "dist/index.js",
"scripts": {
"test": "npm run lint && npm run test:jest",
"test:jest": "jest",
"lint": "npm run format:check && tslint -p tsconfig.json",
"build": "tsc",
"build-watch": "tsc -w",
"prepare": "npm run build",
"format:check": "prettier --check '{test,lib}/**/*.{js,ts}' && tslint -p tsconfig.json",
"format": "prettier --write '{test,lib}/**/*.{js,ts}' && tslint -p tsconfig.json --fix"
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/snyk/dotnet-deps-parser.git"
},
"author": "snyk.io",
"license": "Apache-2.0",
"engines": {
"node": ">=14"
},
"files": [
"bin",
"dist"
],
"homepage": "https://github.com/snyk/dotnet-deps-parser#readme",
"dependencies": {
"@snyk/error-catalog-nodejs-public": "^4.0.1",
"lodash": "^4.17.21",
"source-map-support": "^0.5.21",
"xml2js": "0.6.2"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^20.5.9",
"@types/xml2js": "0.4.12",
"jest": "29.6.4",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"tslint": "5.20.1",
"tslib": "^2.6.2",
"typescript": "5.2.2"
}
}