-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 968 Bytes
/
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
{
"name": "mr-gtag",
"version": "2.0.0",
"description": "Easy, strong typed, and a modern way to use google analytics gtag lib.",
"main": "dist/umd/index.js",
"module": "dist/es/index.js",
"types": "dist/es/index.d.ts",
"scripts": {
"start": "rollup -c rollup.config.es.js -w",
"build": "rollup -c rollup.config.es.js && rollup -c rollup.config.umd.js",
"lint": "npx eslint \"src/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"google",
"gtag",
"google-analytics"
],
"author": "Mohammad Rahhal",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mrahhal/mr-gtag"
},
"files": [
"dist"
],
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.25.0",
"rollup": "^2.47.0",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
}
}