forked from tiged/tiged
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.47 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.47 KB
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": "@uappx/tiged",
"version": "2.12.8",
"engines": {
"node": ">=18.0.0"
},
"description": "Straightforward project scaffolding",
"main": "src/index.js",
"bin": {
"degit": "bin.js",
"tiged": "bin.js"
},
"scripts": {
"lint": "eslint --color --ignore-path .gitignore .",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uappkit/tiged.git"
},
"keywords": [
"scaffolding",
"template",
"git"
],
"author": "tiged",
"license": "MIT",
"bugs": {
"url": "https://github.com/uappkit/tiged/issues"
},
"homepage": "https://github.com/uappkit/tiged#readme",
"dependencies": {
"colorette": "1.2.1",
"enquirer": "2.3.6",
"fs-extra": "10.1.0",
"fuzzysearch": "1.0.3",
"https-proxy-agent": "5.0.0",
"mri": "1.1.6",
"rimraf": "3.0.2",
"tar": "7.5.9",
"tiny-glob": "0.2.8"
},
"devDependencies": {
"@rollup/plugin-commonjs": "17.1.0",
"@rollup/plugin-node-resolve": "11.1.1",
"del-cli": "3.0.1",
"eslint": "7.19.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-import": "2.22.1",
"husky": "5.0.9",
"lint-staged": "10.5.4",
"mocha": "^10.0.0",
"prettier": "2.2.1",
"rollup": "2.80.0",
"rollup-plugin-commonjs": "10.1.0",
"source-map-support": "0.5.19"
},
"files": [
"src",
"help.md"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"eslint --fix",
"git add"
],
"*.{js, json, yml, md}": [
"prettier --write",
"git add"
]
}
}