forked from NetCZ/vue-pikaday
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.5 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
{
"name": "@enrian/vue-pikaday",
"scope": "enrian",
"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://github.com/enrian/vue-pikaday",
"repository": {
"type": "git",
"url": "https://git@github.com/enrian/vue-pikaday.git"
},
"bugs": {
"url": "https://github.com/enrian/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",
"prepublish": "yarn snyk-protect"
},
"keywords": [
"vue",
"vuejs",
"pikaday",
"datepicker"
],
"dependencies": {
"lodash": "^4.17.15"
},
"peerDependencies": {
"moment": "^2.24.0",
"pikaday": "^1.8.0",
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-flow": "^7.0.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": "^3.4.1",
"cypress-vue-unit-test": "^1.11.3",
"eslint": "^6.1.0",
"eslint-plugin-flowtype": "^3.13.0",
"flow-bin": "^0.112.0",
"husky": "^3.0.2",
"moment": "^2.24.0",
"pikaday": "^1.8.0",
"rollup": "^1.19.3",
"rollup-plugin-babel": "^4.3.3",
"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.1.1",
"semantic-release": "^15.13.19",
"snyk": "^1.243.0",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"resolutions": {
"tar": "^4.4.10",
"marked": "^0.6.2"
},
"snyk": true
}