-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 961 Bytes
/
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
{
"name": "vue-props-validation",
"version": "0.1.1",
"description": "Vue props validation logic extracted for nested validation in object and arrays.",
"main": "/lib/index.js",
"scripts": {
"test": "jest",
"build": "babel ./src/index.js -d lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rubnvp/vue-props-validation.git"
},
"keywords": [
"vue",
"vuejs",
"props",
"prop",
"validation",
"validator",
"object",
"array",
"helper"
],
"author": "Rubén Valseca",
"license": "MIT",
"bugs": {
"url": "https://github.com/rubnvp/vue-props-validation/issues"
},
"homepage": "https://github.com/rubnvp/vue-props-validation#readme",
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-transform-modules-umd": "^7.13.0",
"@babel/preset-env": "^7.13.10",
"babel-jest": "^26.6.3",
"jest": "^26.6.3"
}
}