-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 815 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 815 Bytes
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
{
"name": "universal-analytics-payload-parser",
"version": "1.0.1",
"description": "Library for parsing Universal Analytics Payloads",
"author": "david@analytics-debugger.com",
"license": "MIT",
"browser": "build/uaPayloadParser.min.js",
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"eslint": "^8.12.0",
"prettier": "^2.6.1",
"rollup": "^2.70.1",
"rollup-plugin-terser": "^7.0.2"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "echo \"Error: no test specified\" && exit 1",
"pretest": "npm run build"
},
"files": [
"dist"
]
}