-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.28 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "scoop-form",
"version": "0.5.9",
"description": "Form components with a11y and validation",
"main": "./dist/scoop-form.js",
"files": [
"dist/*"
],
"scripts": {
"dev": "vue-cli-service serve --port 8889",
"dev:e2e": "vue-cli-service test:e2e --mode=development --url http://localhost:8889",
"build": "vue-cli-service build",
"build:bundle": "vue-cli-service build --target lib --name scoopForm ./src/index.js",
"build:npm": "rollup -c rollup.config.js",
"lint": "run-s lint:all:*",
"publish": "npm publish --access public",
"lint:all:eslint": "yarn lint:eslint --ext .js,.vue .",
"lint:all:markdownlint": "yarn lint:markdownlint \"docs/*.md\" \"*.md\"",
"lint:all:prettier": "yarn lint:prettier \"**/*.{js,json,css,scss,vue,html,md}\"",
"lint:all:stylelint": "yarn lint:stylelint \"src/**/*.{vue,scss}\"",
"lint:eslint": "eslint --fix",
"lint:markdownlint": "markdownlint",
"lint:prettier": "prettier --write --loglevel warn",
"lint:stylelint": "stylelint --fix",
"test:ci": "run-s test:unit:ci test:e2e",
"test:e2e": "vue-cli-service test:e2e --headless --mode=development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plehnen/scoop-form.git"
},
"keywords": [
"a11y",
"aria",
"vue",
"vue.js",
"form",
"validation"
],
"author": "SCOOP Software GmbH",
"license": "MIT",
"dependencies": {
"vue": "^2.6.10",
"lodash": "^4.17.11",
"vue-i18n": "8.10.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "3.5.5",
"@vue/cli-plugin-e2e-cypress": "3.5.1",
"@vue/cli-plugin-eslint": "3.5.1",
"@vue/cli-plugin-unit-jest": "3.5.3",
"@vue/cli-service": "3.5.3",
"@vue/eslint-config-prettier": "4.0.1",
"@vue/eslint-config-standard": "4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"acorn": "6.1.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.7.1",
"chai": "4.2.0",
"chai-string": "1.5.0",
"cross-env": "5.2.0",
"eslint": "5.16.0",
"eslint-plugin-vue": "5.2.2",
"express": "4.16.4",
"husky": "1.3.1",
"hygen": "3.0.0",
"imagemin-lint-staged": "0.4.x",
"lint-staged": "8.1.5",
"markdownlint-cli": "0.15.0",
"mocha": "5.2.0",
"mochawesome": "3.1.1",
"node-sass": "4.11.0",
"npm-run-all": "4.1.5",
"prettier": "1.16.4",
"resolve-url-loader": "3.1.0",
"rollup": "^0.66.6",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-vue": "^4.3.2",
"sass-loader": "7.1.0",
"stylelint": "9.10.1",
"stylelint-config-css-modules": "1.3.0",
"stylelint-config-prettier": "5.0.0",
"stylelint-config-recess-order": "2.0.1",
"stylelint-config-standard": "18.2.0",
"stylelint-scss": "3.5.4",
"vue-server-renderer": "2.6.10",
"vue-template-compiler": "2.6.10",
"vue-test-chai": "1.0.0-3",
"vuepress": "1.0.0-alpha.47"
},
"resolutions": {
"cypress": "3.2.0"
},
"husky": {
"hooks": {
"pre-commit": "cross-env PRE_COMMIT=true lint-staged"
}
},
"browserslist": [
"last 2 versions",
"> 1%",
"Firefox esr",
"Firefox 54",
"ie 11",
"not ie <= 8"
],
"engines": {
"node": ">=10.15.0",
"yarn": ">=1.13.0"
}
}