This repository was archived by the owner on May 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·58 lines (58 loc) · 1.4 KB
/
package.json
File metadata and controls
executable file
·58 lines (58 loc) · 1.4 KB
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
{
"name": "nuxt-google-optimize",
"version": "0.5.4",
"description": "SSR friendly Google Optimize module for Nuxt.js",
"license": "MIT",
"contributors": [
{
"name": "Pooya Parsa <pooya@pi0.ir>"
},
{
"name": "Farzad Soltani <farzad.au@gmail.com>"
},
{
"name": "Josh Deltener <hecktarzuli@gmail.com>"
}
],
"main": "lib/module.js",
"repository": "https://github.com/alibaba-aero/nuxt-google-optimize",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "nuxt test/fixture",
"lint": "eslint lib test",
"test": "npm run lint && jest",
"release": "standard-version && git push --follow-tags && npm publish"
},
"eslintIgnore": [
"lib/templates/*.*"
],
"files": [
"lib"
],
"jest": {
"testEnvironment": "node",
"collectCoverage": true
},
"dependencies": {
"cookie": "^0.5.0",
"weighted-random": "^0.1.0"
},
"devDependencies": {
"@nuxtjs/module-test-utils": "latest",
"codecov": "latest",
"eslint": "latest",
"eslint-config-standard": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-promise": "latest",
"eslint-plugin-standard": "latest",
"eslint-plugin-vue": "latest",
"jest": "latest",
"nuxt-edge": "latest",
"puppeteer": "latest",
"standard-version": "latest"
}
}