-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.64 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
{
"name": "kintone-vue-component",
"version": "1.0.0",
"description": "Kintone のデザインに合わせた Vue コンポーネントです。",
"author": {
"name": "mid0111",
"url": "https://github.com/mid0111"
},
"scripts": {
"build": "run-s --print-label build:lib build:demo",
"lint": "vue-cli-service lint src",
"build:demo": "vue-cli-service build --target app --dest docs/demo ./src/main.js",
"build:lib": "vue-cli-service build --target lib --name kintone-vue-component --formats commonjs ./src/components/index.js",
"demo": "vue-cli-service serve"
},
"main": "./dist/kintone-vue-component.common.js",
"files": [
"dist"
],
"dependencies": {
"@mdi/js": "^5.5.55",
"autoprefixer": "^9.8.6",
"core-js": "^3.6.5",
"lodash": "^4.17.20",
"npm-run-all": "^4.1.5",
"vue": "^2.6.12",
"vue-class-component": "^7.2.5",
"vue-property-decorator": "^9.0.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.13",
"@vue/cli-plugin-eslint": "~4.5.13",
"@vue/cli-service": "~4.5.13",
"@vue/eslint-config-prettier": "^6.0.0",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^6.2.2",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"sass": "^1.38.0",
"sass-loader": "^10.2.0",
"vue-template-compiler": "^2.6.12"
},
"keywords": [
"kintone",
"vue",
"component"
],
"license": "MIT",
"lint-staged": {
"src/**/*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/mid0111/kintone-vue-component"
}
}