-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpackage.json
70 lines (70 loc) · 2.58 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
{
"name": "vuex-map-fields",
"version": "1.4.1",
"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"
},
"devDependencies": {
"@avalanche/eslint-config": "^4.0.0",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@vue/test-utils": "1.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.3.0",
"coveralls": "^3.1.0",
"eslint": "^7.10.0",
"eslint-plugin-compat": "^3.8.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-markdown": "^1.0.2",
"jest": "^26.4.2",
"rollup": "^2.28.2",
"rollup-plugin-babel": "^4.4.0",
"uglify-es": "^3.3.9",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12",
"vuex": "^3.5.1"
},
"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": [
"> 0.5%",
"not ie <= 10",
"not op_mini all"
],
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/package/"
]
}
}