forked from maoberlehner/vuex-map-fields
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.63 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
{
"name": "vuex-map-fields",
"version": "1.3.3",
"description": "Enable two-way data binding for form fields saved in a Vuex store",
"keywords": [
"vue",
"vuex",
"two-way data binding"
],
"author": "Markus Oberlehner",
"homepage": "https://github.com/maoberlehner/vuex-map-fields",
"license": "MIT",
"scripts": {
"scripts:umd": "rollup --config --output.format umd --name vuex-map-fields --output.file dist/index.js src/index.js",
"scripts:es": "rollup --config --output.format es --name vuex-map-fields --output.file dist/index.esm.js src/index.js",
"scripts:minify": "uglifyjs --compress --mangle --comments --output dist/index.min.js dist/index.js && uglifyjs --compress --mangle --comments --output dist/index.esm.min.js dist/index.esm.js",
"scripts": "yarn run scripts:umd && yarn run scripts:es && yarn run scripts:minify",
"build": "yarn run scripts",
"fake-publish": "yarn run build && sh test/utils/fake-publish.sh",
"lint:scripts": "yarn run fake-publish && eslint --ignore-path .gitignore .",
"lint:scripts-md": "eslint --config .eslintrc-md.json --ext md --ignore-path .gitignore .",
"lint": "yarn run lint:scripts && yarn run lint:scripts-md",
"coveralls": "yarn run test:coverage && cat coverage/lcov.info | coveralls",
"test:unit": "jest src",
"test:integration": "yarn run fake-publish && jest test",
"test:coverage": "yarn run fake-publish && jest --coverage --maxWorkers=4",
"test": "yarn run test:unit && yarn run test:integration",
"prepublishOnly": "yarn run lint && yarn test && yarn run build",
"prepare": "yarn build"
},
"dependencies": {
"vue": "^2.6.2"
},
"devDependencies": {
"@avalanche/eslint-config": "^3.0.0",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.0.0",
"coveralls": "^3.0.2",
"eslint": "^5.13.0",
"eslint-plugin-compat": "^2.6.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-markdown": "^1.0.0",
"jest": "^24.0.0",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"typescript":"^3.3.3333",
"uglify-es": "^3.3.9",
"vue-template-compiler": "^2.6.2",
"vuex": "^3.1.0"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/maoberlehner/vuex-map-fields"
},
"bugs": {
"url": "https://github.com/maoberlehner/vuex-map-fields/issues"
},
"browserslist": [
"last 2 versions"
],
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/package/"
]
}
}