-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.88 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
77
{
"name": "@lenne.tech/cli-plugin-helper",
"version": "0.0.11",
"description": "Helper plugin for Gluegun CLI Projects",
"keywords": [
"lenne.Tech",
"cli",
"gluegun",
"plugin",
"extension"
],
"contributors": [
"Pascal Klesse",
"Kai Haase <kai.haase@lenne.tech> (http://lenne.tech)"
],
"homepage": "http://lenne.tech",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lenneTech/cli-plugin-helper"
},
"bugs": {
"url": "https://github.com/lenneTech/cli-plugin-helper/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}'",
"lint": "eslint --ext .js,.ts src",
"prepack": "npm run build",
"preversion": "npm run lint",
"test": "jest",
"watch": "jest --watch",
"prepare": "husky install"
},
"dependencies": {
"@lenne.tech/gluegun-menu": "0.0.6"
},
"devDependencies": {
"@lenne.tech/npm-package-helper": "0.0.12",
"@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",
"find-file-up": "2.0.1",
"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": {
"find-file-up": ">=2",
"gluegun": ">=4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/**/*",
"LICENSE",
"assets/demo.gif",
"README.md"
]
}