-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "@houdiniproject/noticeme",
"version": "1.3.0",
"description": "A NOTICE.txt generator for npm",
"main": "noticeme.js",
"bin": "cmd.js",
"scripts": {
"build": "tsc && chmod gu+x cmd.js",
"clean": "rm *.js",
"noticeme": "yarn build && ./cmd.js"
},
"keywords": [
"NOTICE",
"legal",
"license",
"spdx",
"clearlydefined",
"generator"
],
"author": "Houdini Project and Microsoft Open Source Programs Office",
"license": "MIT",
"repository": "https://github.com/houdiniproject/noticeme",
"dependencies": {
"colors": "^1.4.0",
"diff-match-patch": "^1.0.5",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
"read-package-tree": "^5.3.1",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/diff-match-patch": "^1.0.32",
"@types/lodash": "^4.14",
"@types/node": "^18",
"@types/node-fetch": "^2.6.2",
"@types/npmcli__arborist": "^5.6.2",
"@types/read-package-tree": "^5.2.0",
"@types/yargs": "^17.0.13",
"typescript": "^5.2"
},
"packageManager": "[email protected]"
}