-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
102 lines (102 loc) · 2.83 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
{
"name": "@netcz/vue-pikaday",
"scope": "netcz",
"private": false,
"publishConfig": {
"access": "public"
},
"version": "0.0.0-development",
"description": "VueJS wrapper component for Pikaday datepicker",
"main": "dist/vue-pikaday.common.js",
"browser": "dist/vue-pikaday.js",
"module": "dist/vue-pikaday.esm.js",
"style": "dist/vue-pikaday.css",
"author": "Michal Szajter <michal@szajter.cz>",
"license": "MIT",
"homepage": "https://netcz.github.io/vue-pikaday",
"repository": {
"type": "git",
"url": "https://git@github.com/NetCZ/vue-pikaday.git"
},
"bugs": {
"url": "https://github.com/NetCZ/vue-pikaday/issues"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e"
}
},
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"pretest": "yarn lint && yarn build",
"test:esm": "yarn cy:run --env mode=esm",
"test:standalone": "yarn cy:run --env mode=standalone",
"test": "yarn test:esm && yarn test:standalone",
"cy:run": "cypress run $RECORD",
"cy:open": "cypress open",
"lint": "eslint src",
"semantic-release": "semantic-release",
"snyk-protect": "snyk protect",
"prepublishOnly": "yarn snyk-protect",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"keywords": [
"vue",
"vuejs",
"pikaday",
"datepicker"
],
"dependencies": {
"lodash": "^4.17.21"
},
"peerDependencies": {
"moment": "^2.24.0",
"pikaday": "^1.8.0",
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-flow": "^7.9.0",
"@babel/register": "^7.5.5",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@commitlint/travis-cli": "^8.1.0",
"@cypress/rollup-preprocessor": "https://github.com/dschulten/cypress-rollup-preprocessor",
"babel-eslint": "^10.0.2",
"chai": "^4.2.0",
"cypress": "^4.2.0",
"cypress-vue-unit-test": "^1.11.3",
"eslint": "^6.1.0",
"eslint-plugin-flowtype": "^4.3.1",
"flow-bin": "^0.121.0",
"husky": "^4.2.1",
"moment": "^2.24.0",
"pikaday": "^1.8.0",
"rollup": "^2.3.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-html": "^0.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-terser": "^5.3.0",
"semantic-release": "^17.0.0",
"snyk": "^1.316.1",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11",
"lodash": "^4.17.21",
"markdown-it": "^10.0.0",
"markdown-it-attrs": "^3.0.2",
"markdown-it-include": "^1.1.0",
"vue-server-renderer": "^2.6.11",
"vuepress": "^1.4.1"
},
"resolutions": {
"tar": "^4.4.10",
"marked": "^0.6.2"
},
"snyk": true
}