-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.35 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
{
"name": "vue-coerce-props",
"version": "1.0.0",
"description": "Coerce props to custom values",
"main": "dist/vue-coerce-props.cjs.js",
"module": "dist/vue-coerce-props.es.js",
"unpkg": "dist/vue-coerce-props.js",
"browser": "dist/vue-coerce-props.es.js",
"author": {
"name": "Eduardo San Martin Morote",
"email": "[email protected]"
},
"scripts": {
"lint": "eslint --color --ext=js,html src test",
"unit": "jest",
"dev": "npm run unit -- --watchAll",
"test": "npm run lint && npm run unit",
"prepublishOnly": "rollit"
},
"files": [
"src",
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"vue",
"coerce",
"sanitize",
"transform",
"props",
"prop",
"function",
"value"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@vue/test-utils": "^1.0.0-beta.26",
"babel-jest": "^26.0.0",
"codecov": "^3.5.0",
"eslint": "^7.0.0",
"eslint-config-posva": "^3.0.1",
"jest": "^26.0.0",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/posva/vue-coerce-props.git"
},
"bugs": {
"url": "https://github.com/posva/vue-coerce-props/issues"
},
"homepage": "https://github.com/posva/vue-coerce-props#readme"
}