forked from Rich-Harris/degit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.58 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
{
"name": "degit",
"version": "2.8.0",
"engines": {
"node": ">=8.0.0"
},
"description": "Straightforward project scaffolding",
"main": "index.js",
"bin": {
"degit": "bin.js"
},
"scripts": {
"lint": "eslint --color --ignore-path .gitignore .",
"dev": "npm run build -- --watch",
"build": "rollup -c",
"test": "mocha",
"pretest": "npm run build",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rich-Harris/degit.git"
},
"keywords": [
"scaffolding",
"template",
"git"
],
"author": "Rich Harris",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rich-Harris/degit/issues"
},
"homepage": "https://github.com/Rich-Harris/degit#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "11.0.2",
"@rollup/plugin-node-resolve": "7.1.1",
"chalk": "3.0.0",
"enquirer": "2.3.4",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-import": "2.20.1",
"fuzzysearch": "1.0.3",
"home-or-tmp": "3.0.0",
"https-proxy-agent": "4.0.0",
"husky": "4.2.1",
"lint-staged": "10.0.7",
"mocha": "7.0.1",
"mri": "1.1.4",
"prettier": "1.19.1",
"rimraf": "3.0.1",
"rollup": "1.31.0",
"rollup-plugin-commonjs": "10.1.0",
"sander": "0.6.0",
"source-map-support": "0.5.16",
"tar": "6.0.1",
"tiny-glob": "0.2.6"
},
"files": [
"index.js",
"bin.js",
"help.md",
"dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"eslint --fix",
"git add"
],
"*.{js, json, yml, md}": [
"prettier --write",
"git add"
]
}
}