forked from pimlie/nuxt-matomo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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.3",
"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.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"@nuxtjs/eslint-config": "^1.1.2",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.2.2",
"eslint-config-standard": "^14.0.1",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^5.2.3",
"get-port": "^5.0.0",
"jest": "^24.9.0",
"jsdom": "^15.1.1",
"nuxt": "^2.9.1",
"puppeteer": "^1.19.0",
"standard-version": "^7.0.0"
}
}