UNPKG

1.59 kBJSONView Raw
1{
2 "name": "degit",
3 "version": "2.8.4",
4 "engines": {
5 "node": ">=8.0.0"
6 },
7 "description": "Straightforward project scaffolding",
8 "main": "dist/index.js",
9 "bin": {
10 "degit": "degit"
11 },
12 "scripts": {
13 "lint": "eslint --color --ignore-path .gitignore .",
14 "dev": "npm run build -- --watch",
15 "build": "rollup -c",
16 "test": "mocha",
17 "pretest": "npm run build",
18 "prepublishOnly": "npm test"
19 },
20 "repository": {
21 "type": "git",
22 "url": "git+https://github.com/Rich-Harris/degit.git"
23 },
24 "keywords": [
25 "scaffolding",
26 "template",
27 "git"
28 ],
29 "author": "Rich Harris",
30 "license": "MIT",
31 "bugs": {
32 "url": "https://github.com/Rich-Harris/degit/issues"
33 },
34 "homepage": "https://github.com/Rich-Harris/degit#readme",
35 "devDependencies": {
36 "@rollup/plugin-commonjs": "18.0.0",
37 "@rollup/plugin-node-resolve": "11.2.1",
38 "chalk": "4.1.0",
39 "enquirer": "2.3.6",
40 "eslint": "7.23.0",
41 "eslint-config-prettier": "8.1.0",
42 "eslint-plugin-import": "2.22.1",
43 "fuzzysearch": "1.0.3",
44 "home-or-tmp": "3.0.0",
45 "https-proxy-agent": "5.0.0",
46 "husky": "6.0.0",
47 "lint-staged": "10.5.4",
48 "mocha": "8.3.2",
49 "mri": "1.1.6",
50 "prettier": "2.2.1",
51 "rimraf": "3.0.2",
52 "rollup": "2.44.0",
53 "rollup-plugin-commonjs": "10.1.0",
54 "sander": "0.6.0",
55 "source-map-support": "0.5.19",
56 "tar": "6.1.0",
57 "tiny-glob": "0.2.8"
58 },
59 "files": [
60 "help.md",
61 "dist"
62 ],
63 "husky": {
64 "hooks": {
65 "pre-commit": "lint-staged"
66 }
67 },
68 "lint-staged": {
69 "*.{js}": [
70 "eslint --fix",
71 "git add"
72 ],
73 "*.{js, json, yml, md}": [
74 "prettier --write",
75 "git add"
76 ]
77 }
78}