-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "package-description",
"version": "0.4.1",
"description": "A cli tool do describe your package.json packages",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ErBlack/package-description.git"
},
"scripts": {
"docs": "node docs.js > README.md",
"version": "npm run docs && git add README.md",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .js"
},
"keywords": [
"package"
],
"author": "[email protected]",
"license": "ISC",
"bin": {
"package-description": "./bin/package-description.js"
},
"bugs": {
"url": "https://github.com/ErBlack/package-description/issues"
},
"homepage": "https://github.com/ErBlack/package-description#readme",
"dependencies": {
"@inquirer/input": "^1.2.14",
"@inquirer/select": "^1.3.1",
"ajv": "^8.12.0",
"commander": "^11.0.0"
},
"devDependencies": {
"@types/node": "^20.3.2",
"eslint": "^8.56.0",
"prettier": "^2.8.8",
"typescript": "^5.1.6"
}
}