-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 860 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 860 Bytes
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
{
"name": "@volumegraphics/license-info-collector",
"version": "3.0.3",
"description": "Collects license information of all dependencies of your project",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"prepublishOnly": "tsc",
"build": "tsc"
},
"author": "Volume Graphics GmbH",
"homepage": "https://www.volumegraphics.com/",
"license": "MIT",
"keywords": [
"license",
"licensing",
"collect",
"dependencies"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/VolumeGraphics/license-info-collector.git"
},
"devDependencies": {
"@types/node": "^10.17.60",
"@types/semver": "^5.5.0",
"ts-node": "^6.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"semver": "^5.7.2"
}
}