-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "@flickerbox/tracker",
"version": "3.0.0",
"description": "A convenient utility for your event tracking needs.",
"main": "index.js",
"scripts": {
"lint-styles": "npm run pretest",
"pretest": "./node_modules/.bin/eslint .",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test": "nyc ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flickerbox/tracker.git"
},
"keywords": [
"analytics",
"google-analytics",
"google-tag-manager",
"matomo-analytics",
"event-tracking"
],
"author": "Flickebox (https://www.flickerbox.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/flickerbox/tracker/issues"
},
"homepage": "https://github.com/flickerbox/tracker#readme",
"devDependencies": {
"ava": "^3.14.0",
"browser-env": "^3.3.0",
"codecov": "^3.8.1",
"eslint": "^7.16.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"esm": "^3.2.25",
"nyc": "^15.1.0"
},
"ava": {
"files": [
"test/**/*"
],
"require": [
"esm"
]
}
}