-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "vue-class-decorator-validation",
"version": "0.9.10",
"description": "Vue Class Decorator validation (powered by Themis Validation Engine)",
"author": "Gr33nbl00d",
"main": "dist/lib/src/index.js",
"module": "dist/lib/src/index.js",
"typings": "dist/types/src/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "tsc --module commonjs && cross-env NODE_ENV=production webpack --progress --hide-modules --mode production --config webpack-production.config.js",
"test": "ts-node ./test/runner.ts",
"generate-barrels": "barrelsby --delete -d ./src"
},
"keywords": [
"vue",
"class",
"babel",
"typescript",
"validation"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Gr33nbl00d/vue-class-decorator-validation/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gr33nbl00d/vue-class-decorator-validation.git"
},
"babel": {
"presets": [
[
"@babel/preset-env"
]
]
},
"dependencies": {
"vue-class-component": "^7.1.0",
"themis-validation-rules-common-filter": "latest",
"themis-validation-rules-common": "latest",
"themis-validation-core": "latest"
},
"devDependencies": {
"@babel/core": "^7.6.3",
"@babel/preset-env": "^7.6.3",
"alsatian": "^3.0.1",
"babel-loader": "^8.0.6",
"barrelsby": "^2.1.1",
"rimraf": "^3.0.0",
"tap-bark": "^2.1.0",
"terser-webpack-plugin": "^2.1.2",
"ts-loader": "^6.2.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3",
"vue": "^2.6.10",
"vue-loader": "^15.7.1",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
}
}