-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.33 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "puggle",
"version": "0.6.1",
"description": "A CLI for bootstrapping and keeping project config up-to-date",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "robb-j/puggle",
"author": "Rob Anderson (https://r0b.io)",
"license": "MIT",
"scripts": {
"build": "tsc",
"lint": "npx tsc --noEmit",
"test": "NO_COLOR=true jest",
"coverage": "NO_COLOR=true jest --coverage",
"preversion": "npm test -s && npm run readme-toc && npm run build && git add README.md",
"readme-toc": "md-toc -i",
"format": "prettier --write '**/*.{js,ts,tsx,json,css,md}'",
"start": "node dist/cli.js",
"dev": "NODE_ENV=development node -r ts-node/register src/cli.ts"
},
"files": [
"dist"
],
"bin": {
"puggle": "./dist/cli.js"
},
"keywords": [],
"engines": {
"node": ">=12"
},
"dependencies": {
"fs-extra": "^10.0.1",
"glob": "^7.2.0",
"got": "^9.6.0",
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.2",
"lodash.set": "^4.3.2",
"picocolors": "^1.0.0",
"prompts": "^2.4.2",
"semver": "^7.3.5",
"yaml": "^1.10.2",
"yargs": "^17.3.1"
},
"devDependencies": {
"@robb_j/md-toc": "^0.3.3",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/got": "^9.6.12",
"@types/jest": "^27.4.1",
"@types/lodash.clone": "^4.5.6",
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.get": "^4.4.6",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.set": "^4.3.6",
"@types/node": "^16.11.26",
"@types/prompts": "^2.0.14",
"@types/semver": "^7.3.9",
"@types/yaml": "^1.9.7",
"@types/yargs": "^17.0.9",
"coveralls": "^3.1.1",
"jest": "^27.5.1",
"lint-staged": "^12.3.5",
"nock": "^13.2.4",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2",
"yorkie": "^2.0.0"
},
"peerDependencies": {
"@types/prompts": "^2.0.9"
},
"peerDependenciesMeta": {
"@types/prompts": {
"optional": true
}
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,json,css,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
}
}