-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.28 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
{
"name": "create-vuepress-site",
"version": "0.4.2-beta",
"description": "Scaffolding a VuePress project",
"repository": {
"type": "git",
"url": "vuepressjs/create-vuepress-site"
},
"license": "MIT",
"author": "Ben Hong <ben@bencodezen.io>",
"bin": {
"create-vuepress-site": "cli.js"
},
"files": [
"lib",
"cli.js",
"index.js"
],
"scripts": {
"lint": "eslint . --ext .js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"package.json": [
"sort-package-json",
"git add"
]
},
"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": {
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "1.3.1",
"lint-staged": "8.1.0",
"sort-package-json": "^1.46.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}