UNPKG

1.22 kBJSONView Raw
1{
2 "name": "degit",
3 "version": "2.1.0",
4 "engines": {
5 "node": ">=8.0.0"
6 },
7 "description": "Straightforward project scaffolding",
8 "main": "index.js",
9 "bin": {
10 "degit": "bin.js"
11 },
12 "scripts": {
13 "dev": "npm run build -- --watch",
14 "build": "rollup -c",
15 "test": "mocha",
16 "pretest": "npm run build"
17 },
18 "repository": {
19 "type": "git",
20 "url": "git+https://github.com/Rich-Harris/degit.git"
21 },
22 "keywords": [
23 "scaffolding",
24 "template",
25 "git"
26 ],
27 "author": "Rich Harris",
28 "license": "MIT",
29 "bugs": {
30 "url": "https://github.com/Rich-Harris/degit/issues"
31 },
32 "homepage": "https://github.com/Rich-Harris/degit#readme",
33 "dependencies": {
34 "chalk": "^2.0.1",
35 "home-or-tmp": "^3.0.0",
36 "mri": "^1.1.0",
37 "tar": "^4.0.2"
38 },
39 "devDependencies": {
40 "eslint": "^4.3.0",
41 "eslint-plugin-import": "^2.7.0",
42 "glob": "^7.1.2",
43 "mocha": "^4.0.1",
44 "rimraf": "^2.6.1",
45 "rollup": "^0.51.5",
46 "rollup-plugin-commonjs": "^8.2.0",
47 "rollup-plugin-typescript": "^0.8.1",
48 "sander": "^0.6.0",
49 "source-map-support": "^0.5.0",
50 "typescript": "^2.5.2"
51 },
52 "files": [
53 "index.js",
54 "bin.js",
55 "help.md"
56 ]
57}