generated from dxworks/dxworks-template-node-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.97 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
100
101
102
103
104
105
106
107
108
{
"name": "@dxworks/depinder",
"version": "0.1.0",
"description": "",
"keywords": [
"dxworks",
"dxw"
],
"homepage": "https://github.com/dxworks/depinder#readme",
"bugs": {
"url": "https://github.com/dxworks/depinder/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dxworks/depinder.git"
},
"license": "Apache-2.0",
"author": "Mario Rivis <mario.rivis@gmail.com>",
"main": "dist/depinder.js",
"bin": {
"depinder": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && tsc -p tsconfig.build.json && npm run copy-files",
"clean": "rimraf dist/ *.tsbuildinfo",
"clean:modules": "rm -rf ./node_modules ./package-lock.json",
"copy-files": "copyfiles -a -u 1 src/assets/**/*.* dist",
"create": "npm run build && npm run test",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"local": "npm run build && npm link && npx dx-depinder --help",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"test": "jest --passWithNoTests",
"test:dev": "jest --watch"
},
"dependencies": {
"@dxworks/nuget-inspector": "^1.2.0",
"@octokit/graphql": "^4.8.0",
"@snyk/gemfile": "^1.2.0",
"chalk": "^4.1.2",
"cli-progress": "^3.11.2",
"commander": "^11.1.0",
"cross-env": "^7.0.3",
"csv": "^6.0.4",
"dotenv": "^16.0.3",
"lodash": "^4.17.21",
"minimatch": "^6.1.6",
"moment": "^2.29.1",
"mongodb": "^5.8.1",
"mongoose": "^7.5.2",
"node-html-parser": "^6.1.4",
"npm": "^9.9.0",
"npm-registry-fetch": "^12.0.1",
"packageurl-js": "^0.0.5",
"pom-parser": "^1.2.0",
"puppeteer": "18.0.1",
"semver": "^7.3.5",
"snyk-gradle-plugin": "^3.25.2",
"snyk-nodejs-lockfile-parser": "^1.52.1",
"spdx-correct": "^3.1.1",
"spdx-license-ids": "^3.0.10",
"tmp": "^0.2.1",
"toml": "^3.0.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/cli-progress": "^3.9.2",
"@types/dockerode": "^3.3.0",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.1.3",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.177",
"@types/node": "^16.10.2",
"@types/npm-registry-fetch": "^8.0.3",
"@types/semver": "^7.3.9",
"@types/spdx-correct": "^2.0.0",
"@types/string-template": "^1.0.2",
"@types/tmp": "^0.2.3",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"i": "^0.3.7",
"jest": "^27.2.4",
"json": "^11.0.0",
"performance-now": "^2.1.0",
"rimraf": "^3.0.2",
"sort-package-json": "^1.52.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"dxw": {
"commands": [
{
"file": "dist/depinder.js",
"command": "mainCommand"
}
]
}
}