-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
76 lines (76 loc) · 2.19 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
74
75
76
{
"name": "vuejs-form",
"version": "1.3.0",
"description": "Form wrapper simplifying developer ability to access, check, fill, and pass input data",
"main": "dist/index.js",
"scripts": {
"all": "npm run build && npm test",
"pretest": "npm run transpile",
"test": "mocha test/tests.js",
"transpile": "babel src --quiet --out-dir dist",
"readme": "node bundler/bundle.js",
"bundle": "webpack-cli dist/index.js --output build/vuejs-form.js --mode development --output-library form",
"uglify": "uglifyjs build/vuejs-form.js --compress --mangle --output build/vuejs-form.min.js",
"build": "npm run transpile && npm run bundle && npm run uglify && npm run readme",
"coverage": "npm run transpile && nyc mocha test/tests.js",
"reporter": "nyc report --reporter=html",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"prepublishOnly": "npm run all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhorton34/vuejs-form.git"
},
"keywords": [
"vue form",
"form",
"vue",
"vuejs form",
"vuejs forms",
"form vuejs",
"vue forms package",
"vue form input",
"vue validation",
"vuejs validators",
"validation with vuejs",
"validators",
"data validation",
"javascript validation",
"vue validators",
"reactive vue validation",
"vue rules",
"validator javascript",
"that vue validator",
"javascript validation rules",
"vuejs validation messages",
"vue js validation rules",
"simple vuejs validators"
],
"author": "Zachary Horton",
"license": "MIT",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"bugs": {
"url": "https://github.com/zhorton34/vuejs-form/issues"
},
"homepage": "https://github.com/zhorton34/vuejs-form#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"benchmark": "^2.1.0",
"chai": "^4.1.2",
"hoax.js": "^1.0.0",
"mocha": "^3.5.2",
"nyc": "^11.0.2",
"uglify-js": "^3.2.2",
"vuejs-validators": "^1.1.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}