-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
63 lines (63 loc) · 1.46 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
61
62
63
{
"name": "nuxt-facebook-pixel-module",
"version": "1.6.0",
"description": "Nuxt plugin for Facebook pixel",
"license": "MIT",
"contributors": [
{
"name": "William DA SILVA <[email protected]>"
},
{
"name": "Antony Jones <[email protected]>"
},
{
"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": {
"minimatch": "^3.0.4"
},
"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": "^26.6.1",
"jsdom": "latest",
"nuxt": "^2.14.7",
"standard-version": "^9.0.0",
"webpack": "^4.44.2"
}
}