-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
executable file
·60 lines (60 loc) · 1.99 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
{
"name": "nuxt-matomo",
"version": "1.2.4",
"license": "MIT",
"description": "Matomo analytics for Nuxt.js",
"repository": "https://github.com/pimlie/nuxt-matomo",
"homepage": "https://github.com/pimlie/nuxt-matomo",
"main": "lib/module.js",
"keywords": [
"matomo",
"piwik",
"analytics",
"nuxt",
"nuxt.js",
"nuxtjs"
],
"files": [
"lib"
],
"scripts": {
"build": "nuxt build test/fixtures/basic",
"dev": "nuxt test/fixtures/meta-changed",
"lint": "yarn lint:lib && yarn lint:matomo",
"lint:lib": "eslint --ext .js,.vue .",
"lint:matomo": "if [ $(node -e \"console.log(require('fs').existsSync('./test/fixtures/basic/.nuxt/matomo'));\") = \"false\" ]; then yarn test:fixtures; fi && eslint --no-ignore test/fixtures/basic/.nuxt/matomo/",
"release": "yarn lint && yarn test && standard-version",
"test": "yarn test:fixtures && yarn test:e2e",
"test:fixtures": "jest test/fixtures",
"test:e2e": "jest test/e2e",
"download-matomo": "wget -O test/utils/piwik.js https://raw.githubusercontent.com/matomo-org/matomo/master/js/piwik.js",
"create-matomo-api-list": "yarn download-matomo && node ./scripts/createApiMethodsList.js"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.12.11",
"@nuxtjs/eslint-config": "^5.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.19.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.5.0",
"get-port": "^5.1.1",
"jest": "^26.6.3",
"jsdom": "^15.1.1",
"nuxt": "^2.14.12",
"puppeteer": "^5.5.0",
"standard-version": "^9.1.0"
}
}