forked from mindbridge-ai/oss-attribution-generator
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"dependencies": {
"@metamask/license-checker": "^26.0.1",
"fs-jetpack": "^5.1.0",
"taim": "^1.1.0",
"yargs": "^7.1.2"
},
"name": "@metamask/oss-attribution-generator",
"description": "utility to parse bower and npm packages used in a project and generate an attribution file to include in your product",
"version": "2.0.2",
"bin": {
"generate-attribution": "index.js"
},
"files": [
"index.js"
],
"engines": {
"node": ">=14.0.0",
"npm": ">=8.3.0"
},
"scripts": {
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/oss-attribution-generator.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"license",
"attribution",
"npm",
"bower",
"credit"
],
"author": "Dan Zumwalt",
"license": "MIT",
"bugs": {
"url": "https://github.com/MetaMask/oss-attribution-generator/issues"
},
"homepage": "https://github.com/MetaMask/oss-attribution-generator#readme",
"devDependencies": {
"mocha": "^9.1.3"
}
}