-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
executable file
·39 lines (39 loc) · 1003 Bytes
/
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
{
"name": "@nuxtjs/gtm",
"version": "2.4.0",
"description": "Google Tag Manager Module for Nuxt.js",
"repository": "nuxt-community/gtm-module",
"license": "MIT",
"main": "lib/module.js",
"files": [
"lib"
],
"scripts": {
"dev": "nuxt example",
"generate": "nuxt generate example",
"lint": "eslint --ext .js,.vue example lib test",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint && jest"
},
"dependencies": {
"chalk": "^4.1.0",
"semver": "^7.3.2"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@nuxtjs/eslint-config": "latest",
"@nuxtjs/module-test-utils": "latest",
"@types/jest": "latest",
"babel-eslint": "latest",
"babel-jest": "latest",
"codecov": "latest",
"eslint": "latest",
"jest": "latest",
"nuxt-edge": "latest",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
}
}