forked from markanderstam/npm-license-text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 876 Bytes
/
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
{
"name": "npm-license-text",
"version": "1.0.3",
"description": "Generate file with license text of all dependencies",
"main": "index.js",
"scripts": {
"prepare": "npm run tsc",
"test": "tslint -t stylish -p tsconfig.json",
"tsc": "tsc"
},
"bin": {
"npm-license-text": "./index.js"
},
"author": "Mattias Holmlund <mattias.holmlund@netinsight.net>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/netinsight/npm-license-text.git"
},
"devDependencies": {
"@types/got": "^9.6.11",
"@types/mz": "^2.7.3",
"@types/node": "^14.14.35",
"@types/npm-license-crawler": "^0.2.0",
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"typescript": "^4.2.3"
},
"dependencies": {
"got": "^11.8.2",
"mz": "^2.7.0",
"npm-license-crawler": "^0.2.1",
"thenify": "^3.3.1"
}
}