-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 1.91 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@lenne.tech/gluegun-menu",
"version": "0.0.6",
"description": "Menu for gluegun CLIs",
"keywords": [
"gluegun",
"menu",
"cli",
"extension",
"lenne.tech"
],
"contributors": [
"Pascal Klesse",
"Kai Haase <kai.haase@lenne.tech> (http://lenne.tech)",
"Angel Rodríguez <angelmanuelrs@gmail.com> (https://angel-rs.netlify.com)"
],
"homepage": "http://lenne.tech",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lenneTech/gluegun-menu"
},
"bugs": {
"url": "https://github.com/lenneTech/gluegun-menu/issues"
},
"scripts": {
"build": "npm run lint && npm run clean-build && npm run compile",
"clean-build": "rimraf ./dist",
"compile": "tsc -p .",
"coverage": "jest --coverage",
"format": "prettier --write 'src/**/*.{js,ts,tsx,json}'",
"format:fix": "pretty-quick --staged",
"format:fixAll": "prettier --write src",
"lint": "eslint --ext .js,.ts src",
"prepack": "npm run build",
"preversion": "npm run lint",
"test": "jest",
"watch": "jest --watch",
"prepare": "husky install"
},
"dependencies": {},
"devDependencies": {
"@lenne.tech/npm-package-helper": "0.0.10",
"@types/jest": "27.4.1",
"@types/node": "16.11.27",
"@typescript-eslint/eslint-plugin": "5.20.0",
"@typescript-eslint/parser": "5.20.0",
"eslint": "8.13.0",
"eslint-config-prettier": "8.5.0",
"gluegun": "5.1.2",
"husky": "7.0.4",
"jest": "27.5.1",
"prettier": "2.6.2",
"pretty-quick": "3.1.3",
"rimraf": "3.0.2",
"ts-jest": "27.1.4",
"ts-node": "10.7.0",
"typescript": "4.6.3"
},
"peerDependencies": {
"gluegun": ">=3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/**/*",
"LICENSE",
"assets/demo.gif",
"README.md"
]
}