forked from Rich-Harris/degit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 788 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 788 Bytes
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
{
"name": "degit",
"version": "1.0.0",
"description": "Straightforward project scaffolding",
"bin": {
"degit": "bin.js"
},
"scripts": {
"test": "mocha"
},
"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",
"dependencies": {
"chalk": "^2.0.1",
"home-or-tmp": "^3.0.0",
"mri": "^1.1.0"
},
"devDependencies": {
"eslint": "^4.3.0",
"eslint-plugin-import": "^2.7.0",
"mocha": "^3.4.2",
"sander": "^0.6.0"
},
"files": [
"*.js"
]
}