-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.17 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": "@inthepocket/npm-license-scraper",
"version": "2.3.2",
"description": "Dead simple license scraper and validator with zero dependencies.",
"main": "dist/index.js",
"bin": {
"npm-license-scraper": "dist/index.js"
},
"scripts": {
"compile": "tsc",
"build": "npm run compile && babel src --extensions \".ts\" --out-dir dist",
"test": "npm run build && node dist/index.js --includeDev"
},
"keywords": [
"npm",
"license",
"checker",
"scraper"
],
"author": "In The Pocket <[email protected]> (http://inthepocket.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/inthepocket/npm-license-scraper.git"
},
"bugs": {
"url": "https://github.com/inthepocket/npm-license-scraper/issues"
},
"homepage": "https://github.com/inthepocket/npm-license-scraper#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.19.6",
"@babel/plugin-transform-typescript": "7.20.0",
"@babel/preset-env": "7.19.4",
"@babel/preset-typescript": "7.18.6",
"@types/node": ">= 18",
"typescript": "4.8.4"
}
}