forked from WilliamDASILVA/nuxt-facebook-pixel-module
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.43 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.43 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
59
60
61
{
"name": "nuxt-facebook-pixel-module",
"version": "1.3.0",
"description": "Nuxt plugin for Facebook pixel",
"license": "MIT",
"contributors": [
{
"name": "William DA SILVA <william.da.silva@outlook.com>"
},
{
"name": "Antony Jones <antony@beyonk.com>"
},
{
"name": "David Tabachnikov"
}
],
"main": "lib/module.js",
"repository": "https://github.com/WilliamDASILVA/nuxt-facebook-pixel-module",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "nuxt test/fixture",
"lint": "eslint lib test",
"test": "jest",
"release": "standard-version && git push --follow-tags"
},
"eslintIgnore": [
"lib/templates/*.*"
],
"files": [
"lib"
],
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"lib",
"test"
]
},
"dependencies": {},
"devDependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"codecov": "latest",
"eslint": "^5.14.1",
"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": "^24.1.0",
"jsdom": "latest",
"nuxt": "^2.4.3",
"standard-version": "latest",
"webpack": "^4.27.1"
}
}