-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.73 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
{
"name": "@lando/matomo",
"description": "A Lando plugin that provides a tight integration with Matomo.",
"version": "0.5.1",
"author": "Alec Reynolds @reynoldsalec",
"license": "GPL-3.0",
"repository": "lando/matomo",
"bugs": "https://github.com/lando/matomo/issues/new/choose",
"homepage": "https://github.com/lando/matomo",
"keywords": [
"lando",
"lando-plugin",
"matomo"
],
"engines": {
"node": ">=14.0.0"
},
"main": "index.js",
"nyc": {
"include": [
"lib/**/*.js",
"recipes/**/*.js",
"services/**/*.js",
"types/**/*.js"
],
"exclude": [
"test/**"
],
"cache": true,
"all": true
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs --dest _site",
"docs:lint": "eslint -c docs/.eslintrc.json --quiet docs/.vuepress",
"lint": "eslint --quiet . && yarn docs:lint",
"release": "bump --prompt --tag --all --push",
"test:unit": "nyc --reporter=html --reporter=text mocha --timeout 5000 test/**/*.spec.js",
"test:leia": "yarn leia \"examples/**/README.md\" -c 'Destroy tests' --stdin",
"test": "yarn lint && yarn test:unit"
},
"dependencies": {
"js-yaml": "^3.4.6",
"lodash": "^4.17.21",
"tar": "^6.1.11"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.0",
"@lando/leia": "^0.6.4",
"@lando/vuepress-theme-lando-docs": "^0.2.3",
"chai": "^4.3.4",
"command-line-test": "^1.0.10",
"eslint": "^7.32.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-vue": "^8.0.3",
"mocha": "^9.1.2",
"nyc": "^15.1.0",
"version-bump-prompt": "^4.2.1",
"vuepress": "^2.0.0-beta.27"
}
}