-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.02 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
{
"name": "vue-dullahan-validation",
"version": "0.0.7",
"description": "Model-based validation with non-optinionated UI",
"main": "dist/vue-dullahan-validation.js",
"directories": {
"test": "test"
},
"dependencies": {},
"devDependencies": {
"ava": "^0.24.0",
"babel-eslint": "^7.2.3",
"babel-plugin-external-helpers": "^6.18.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015-loose-rollup": "^7.0.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^2.9.0",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-friendly-formatter": "^2.0.5",
"eslint-loader": "^1.9.0",
"eslint-plugin-ava": "^4.4.0",
"eslint-plugin-html": "^1.3.0",
"eslint-plugin-import": "^1.8.1",
"nyc": "^11.4.1",
"rollup": "^0.53.3",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.2",
"rollup-plugin-vue": "^2.3.0",
"vue": "^2.5.13"
},
"scripts": {
"build": "rollup --config rollup.config.publish.js",
"build-demo": "rollup --config rollup.config.demo.js",
"test": "NODE_ENV=test ava",
"lint": "eslint --fix --ext .js,.vue src test",
"prepublishOnly": "npm test; npm run build; npm run build-demo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/morficus/vue-dullahan-validation.git"
},
"keywords": [
"vue",
"vuejs",
"vue-mixin",
"validation",
"validations",
"validator",
"validation-library",
"model-validation",
"form-validation",
"form",
"headless",
"dullahan"
],
"author": "Maurice Williams <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/morficus/vue-dullahan-validation/issues"
},
"homepage": "https://github.com/morficus/vue-dullahan-validation#readme",
"ava": {
"concurrency": 10,
"require": [
"babel-register"
],
"babel": "inherit"
}
}