forked from vuepress/create-vuepress-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.01 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
{
"name": "create-vuepress-site",
"version": "0.4.2-beta",
"description": "Scaffolding a VuePress project",
"files": [
"lib",
"cli.js",
"index.js"
],
"bin": {
"create-vuepress-site": "cli.js"
},
"scripts": {},
"repository": {
"url": "vuepressjs/create-vuepress-site",
"type": "git"
},
"author": "Ben Hong <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^2.4.1",
"clipboardy": "^1.2.3",
"debug": "^3.1.0",
"execa": "^1.0.0",
"fs-extra": "^8.0.1",
"glob": "^7.1.4",
"inquirer": "^6.2.1",
"mkdirp": "^0.5.1",
"prettier": "^1.17.0",
"semver": "^6.1.0",
"sylvanas": "~0.0.3",
"yargs-parser": "^11.0.0",
"yeoman-generator": "^4.0.1"
},
"devDependencies": {
"husky": "1.3.1",
"lint-staged": "8.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"git add"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}