This repository has been archived by the owner on Nov 15, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.51 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
{
"name": "vuex-validator",
"version": "0.2.7",
"description": "Validation support for Vuex",
"keywords": [
"vuejs",
"vuex",
"validator"
],
"author": "Sebastian Fastner <[email protected]>",
"license": "Apache-2.0",
"repository": "https://github.com/sebastian-software/vuex-validator",
"bugs": {
"url": "https://github.com/sebastian-software/vuex-validator/issues"
},
"homepage": "https://github.com/sebastian-software/vuex-validator",
"dependencies": {
"lodash-es": "^4.12.0"
},
"main": "lib/VuexValidator.js",
"jsnext:main": "src/VuexValidator.js",
"devDependencies": {
"ava": "^0.15.0",
"eslint": "^3.0.0",
"release-it": "^2.3.1",
"rollup": "^0.34.1",
"rollup-plugin-buble": "^0.12.1",
"rollup-plugin-node-resolve": "^2.0.0",
"s15e-javascript": "^0.2.0",
"updtr": "^0.2.0"
},
"scripts": {
"lint": "eslint --cache *.js src/*.js",
"autofix": "eslint --cache --fix *.js src/*.js",
"build": "rollup -c",
"pretest": "npm run build",
"test": "ava",
"test:watch": "ava --watch",
"prepublish": "npm run build",
"release": "release-it --github.release --npm.publish --non-interactive",
"release-minor": "release-it --github.release --npm.publish --non-interactive --increment minor",
"release-major": "release-it --github.release --npm.publish --non-interactive --increment major",
"depupdate": "updtr"
},
"ava": {
"files": [
"test.js"
],
"require": [
"babel-register"
]
}
}