-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
54 lines (54 loc) · 1.16 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
{
"name": "vue-sfc-rollup",
"description": "Quickly generate redistributable components with Rollup",
"author": "Michael Dodge",
"license": "ISC",
"version": "4.1.2",
"bin": {
"sfc-init": "./sfc-init.js"
},
"keywords": [
"vue",
"sfc",
"cli",
"generator",
"template",
"compiler",
"rollup"
],
"homepage": "https://github.com/team-innovation/vue-sfc-rollup",
"files": [
"templates/*",
"lib/*",
"sfc-init.js"
],
"scripts": {
"lint": "eslint ./**/*.js ./**/.*.js",
"version": "npm --no-git-tag-version version",
"version:patch": "npm run version -- patch",
"version:minor": "npm run version -- minor",
"version:major": "npm run version -- major"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm audit"
}
},
"dependencies": {
"chalk": "^4.1.1",
"ejs": "^3.1.6",
"minimist": "^1.2.5",
"prompts": "^2.4.1",
"update-check": "^1.5.4"
},
"devDependencies": {
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"husky": "^4.3.8"
},
"engines": {
"node": ">=12"
}
}