-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.9 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
64
65
66
{
"name": "@eliamartani/vue-chk",
"version": "1.3.3",
"description": "simplest custom checkbox possible for vue",
"author": "Eliamar Tani<eliamartani@gmail.com>",
"scripts": {
"build": "npm run build:lib && npm run build:wc",
"build:docs": "vuepress build docs",
"build:lib": "vue-cli-service build --target lib --name vue-chk src/main.js --no-clean",
"build:wc": "vue-cli-service build --target wc --name vue-chk src/*.vue --no-clean",
"docs": "vuepress dev docs",
"lint": "vue-cli-service lint",
"publish": "node ./scripts/publish.js",
"test": "vue-cli-service test:unit",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"main": "dist/vue-chk.umd.js",
"module": "dist/vue-chk.common.js",
"unpkg": "dist/vue-chk.umd.min.js",
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-plugin-unit-jest": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.2.2",
"babel-eslint": "^10.1.0",
"core-js": "^3.15.2",
"eslint": "^7.31.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.14.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.0",
"prettier": "^2.3.2",
"sass": "^1.35.2",
"sass-loader": "^12.1.0",
"vue": "^2.6.14",
"vue-template-compiler": "^2.6.14",
"vuepress": "^1.8.2"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"bugs": {
"url": "https://github.com/eliamartani/vue-chk/issues"
},
"homepage": "https://github.com/eliamartani/vue-chk",
"keywords": [
"vuejs",
"checkbox"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/eliamartani/vue-chk.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"lint-staged": {
"src/**/*": "npm run lint"
}
}