-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·51 lines (51 loc) · 1.27 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
{
"name": "@nuxtjs/ackee",
"version": "3.0.2",
"description": "Nuxt.js module for Ackee analytics",
"keywords": [
"nuxt",
"module",
"nuxt-module"
],
"repository": "nuxt-community/ackee-module",
"license": "MIT",
"main": "dist/module.js",
"types": "dist/module.d.ts",
"files": [
"dist",
"templates"
],
"scripts": {
"build": "siroc build",
"dev": "nuxt-ts example",
"lint": "eslint --ext .js,.ts,.vue .",
"release": "yarn build && yarn test && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint"
},
"dependencies": {
"ackee-tracker": "^5.1.0",
"consola": "^2.15.3",
"defu": "^5.0.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "latest",
"@babel/preset-env": "latest",
"@babel/preset-typescript": "latest",
"@nuxt/test-utils": "latest",
"@nuxt/types": "latest",
"@nuxt/typescript-runtime": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@siroc/jest-preset": "latest",
"@types/jest": "latest",
"babel-eslint": "latest",
"babel-jest": "latest",
"eslint": "latest",
"jest": "latest",
"nuxt-edge": "latest",
"siroc": "latest",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
}
}