-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.04 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": "droplicense",
"version": "1.0.3",
"description": "Drops a license template in the current directory.",
"license": "MIT",
"keywords": [
"LICENSE",
"TEMPLATE"
],
"type": "module",
"author": {
"name": "Futuremotion",
"email": "[email protected]",
"url": "https://github.com/futuremotiondev"
},
"repository": {
"url": "git+https://github.com/futuremotiondev/droplicense.git"
},
"main": "bin/index.js",
"bin": {
"droplicense": "bin/index.js"
},
"scripts": {
"compile": "tsc",
"testrun": "cls && tsc && node ./bin/index.js",
"publish": "npm publish"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^22.7.5",
"typescript": "^5.6.3"
},
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"cli-spinner": "^0.2.10",
"git-user-name": "^2.0.0",
"jsdom": "^25.0.1",
"node-fetch": "^3.3.2"
}
}