-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
66 lines (66 loc) · 1.82 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
{
"name": "vuerify",
"version": "0.4.0",
"description": "Validation plugin for Vue.js",
"main": "dist/vuerify.common.js",
"scripts": {
"test": "npm run dist-all && nyc ava -s",
"dist": "rm -rf dist && npm run lint && rollup -c && uglifyjs ./dist/vuerify.js -cm > ./dist/vuerify.min.js",
"lerna:dist": "lerna run dist",
"dist-all": "lerna bootstrap && npm run dist && npm run lerna:dist",
"dev": "webpack-dev-server --config examples/webpack.config.js --inline --hot --port 8666",
"deploy": "rm -rf examples/dist && NODE_ENV=production webpack --config examples/webpack.config.js --progress && gh-pages -d examples/dist",
"lint": "eslint src examples",
"pub-all": "lerna publish",
"preversion": "npm test"
},
"files": [
"dist",
"src"
],
"ava": {
"files": [
"test/util/*.js"
],
"require": [
"./test/helpers/setup-browser-env.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/qingwei-li/vuerify.git"
},
"keywords": [
"form",
"validator",
"vue",
"plugin"
],
"author": "qingwei-li <cinwell.li@gmail.com>",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/qingwei-li/vuerify/issues"
},
"homepage": "https://github.com/qingwei-li/vuerify#readme",
"devDependencies": {
"ava": "^0.15.2",
"buble-loader": "^0.3.0",
"eslint": "3.0.1",
"eslint-config-vue": "^1.0.3",
"eslint-plugin-html": "^1.5.3",
"gh-pages": "^0.11.0",
"html-webpack-plugin": "^2.22.0",
"jsdom": "^9.4.1",
"lerna": "2.0.0-beta.24",
"nyc": "^7.0.0",
"rollup": "^0.36.1",
"rollup-plugin-buble": "^0.14.0",
"uglifyjs": "^2.4.10",
"vue": "^1.0.26",
"webpack": "^2.1.0-beta.25",
"webpack-dev-server": "^2.1.0-beta.7"
},
"dependencies": {
"simple-assign": "^0.1.0"
}
}