-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.57 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
{
"name": "validue",
"version": "1.1.2",
"description": "This library is based on the \"class-validator\" library. It will help you easily validate your fields, forms and etc.. All you need to use is @PropertyValidate and @ActionValidate decorators, and all decorators from “class validator” such as @Max, @IsEmail and etc..",
"main": "dist/index.js",
"author": "sployad <[email protected]>",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/sployad/validue.git"
},
"license": "ISC",
"scripts": {
"build": "npx babel src --out-dir dist",
"test:unit": "vue-cli-service test:unit"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"class-validator": "^0.12.2",
"reflect-metadata": "^0.1.13",
"vue": "^2.6.11",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^9.1.2"
},
"devDependencies": {
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^24.0.19",
"@types/jwt-decode": "^2.2.1",
"@types/node": "^13.11.0",
"@types/rosie": "0.0.37",
"@types/vue-color": "^2.4.2",
"@vue/cli-plugin-babel": "^4.2.0",
"@vue/cli-plugin-typescript": "^4.2.0",
"@vue/cli-plugin-unit-jest": "^4.3.1",
"@vue/cli-service": "^4.2.0",
"@vue/test-utils": "1.1.1",
"babel-jest": "^25.0.0",
"chromedriver": "80",
"geckodriver": "^1.19.1",
"jest": "^25.0.0",
"rosie": "^2.0.1",
"typescript": "~3.7.5",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.11"
}
}