generated from adrianhurt/package-vue-canvas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.32 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
67
68
69
70
71
72
73
74
75
{
"name": "vue-values",
"version": "1.0.0-alpha.2",
"description": "A set of simple composable functions and components to handle simple values.",
"author": "adrianhurt",
"license": "MIT",
"keywords": [
"vue",
"vuejs",
"value",
"values",
"use",
"composables",
"hooks",
"handler",
"store",
"stored",
"synchronized"
],
"homepage": "https://github.com/adrianhurt/vue-values",
"repository": {
"type": "git",
"url": "https://github.com/adrianhurt/vue-values"
},
"main": "./dist/vue-values.common.js",
"scripts": {
"clean": "rm -rf dist",
"clearAll": "yarn clean && rm -rf node_modules",
"reinstall": "yarn clearAll && yarn install",
"test:unit": "vue-cli-service test:unit",
"test:clear": "vue-cli-service test:unit --clearCache",
"lint": "vue-cli-service lint",
"validate": "yarn test:unit && yarn lint",
"prebuild": "yarn clean",
"build": "vue-cli-service build --target lib --name vue-values src/main.js",
"dist": "yarn validate && yarn build",
"prepublishOnly": "yarn dist"
},
"gitHooks": {
"commit-msg": "commitlint -e -V",
"pre-commit": "yarn validate"
},
"files": [
"dist"
],
"peerDependencies": {
"core-js": "^3.12.0",
"uuid": "^8.0.0",
"vue": "^3.0.11"
},
"devDependencies": {
"core-js": "^3.12.0",
"uuid": "^8.3.2",
"vue": "^3.0.11",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@vue/babel-preset-app": "^4.5.12",
"@vue/cli-plugin-babel": "^4.5.12",
"@vue/cli-plugin-eslint": "^4.5.12",
"@vue/cli-plugin-unit-jest": "^4.5.12",
"@vue/cli-service": "^4.5.12",
"@vue/compiler-sfc": "^3.0.11",
"@vue/eslint-config-airbnb": "^5.3.0",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/test-utils": "^2.0.0-rc.6",
"babel-eslint": "^10.1.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-vue": "^7.9.0",
"node-sass": "^4.14.1",
"sass-loader": "^8.0.2",
"vue-jest": "^5.0.0-alpha.8"
}
}