-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathpackage.json
71 lines (71 loc) · 2.25 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
{
"name": "vuex-map-fields",
"version": "1.4.0",
"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": {
"build": "rollup -c",
"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": "cross-env NODE_ENV=test yarn run fake-publish && jest test",
"test:coverage": "cross-env NODE_ENV=test 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.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.1.0",
"coveralls": "^3.0.9",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-plugin-compat": "^3.5.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-markdown": "^1.0.1",
"jest": "^25.1.0",
"rollup": "^2.1.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.3.0",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11",
"vuex": "^3.1.2"
},
"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/"
]
},
"dependencies": {
"@babel/runtime": "^7.8.7"
}
}