This repository has been archived by the owner on Jun 2, 2023. It is now read-only.
generated from yoriiis/npm-package-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.9 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
{
"name": "tracking-manager",
"version": "3.0.0",
"description": "Tracking Manager allows to manage all your Google Analytics events directly in HTML or Javascript with a simple and extensible configuration and public functions to track events with dynamic variables",
"keywords": [
"tracking",
"google-analytics",
"tracking-manager",
"track-event",
"track-page-view"
],
"homepage": "https://github.com/yoriiis/tracking-manager",
"bugs": "https://github.com/yoriiis/tracking-manager/issues",
"repository": "https://github.com/yoriiis/tracking-manager.git",
"license": "MIT",
"author": "Yoriiis aka Joris DANIEL",
"type": "module",
"main": "lib/index.js",
"files": [
"lib",
"types"
],
"scripts": {
"build": "echo \"No build specified\" && exit 0",
"test": "npm run test:markdown && npm run test:eslint && npm run test:unit",
"test:eslint": "eslint ./src ./config --config ./config/.eslintrc.cjs --ignore-pattern dist",
"test:markdown": "markdownlint-cli2 '**/*.md' '.github/*.md'",
"test:unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config config/jest.config.js --verbose --coverage",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config config/jest.config.js --watchAll --coverage"
},
"prettier": "./config/prettier.config.cjs",
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/eslint-parser": "^7.21.8",
"@babel/preset-env": "^7.22.2",
"coveralls": "^3.1.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "29.5.0",
"jest-environment-jsdom": "^29.5.0",
"markdownlint-cli2": "^0.7.1",
"prettier": "^2.8.7",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=16.20.0"
}
}