-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
56 lines (56 loc) · 1.81 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
{
"name": "chrome-snowplow-inspector",
"version": "0.3.8",
"description": "Add a panel to DevTools to show Snowplow analytics beacon information.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"fmt": "prettier -w src",
"clean": "rm -r dist snowplow-chrome-extension.zip || true",
"prestart": "npm run clean",
"start": "rollup -c -w",
"preprepare": "npm run clean",
"prepare": "rollup -c",
"prexpi": "npm install",
"xpi": "npx web-ext build --overwrite-dest -s dist/ -a .",
"prexpi-signed": "npm install",
"xpi-signed": "npx web-ext sign -s dist/ -a .",
"prezip": "npm install",
"zip": "zip -r snowplow-chrome-extension.zip dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snowplow/chrome-snowplow-inspector.git"
},
"author": "Poplin Data",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/snowplow/chrome-snowplow-inspector/issues"
},
"homepage": "https://github.com/snowplow/chrome-snowplow-inspector#readme",
"dependencies": {
"@fontsource/roboto": "^5.0.0",
"@fontsource/rubik": "^5.0.0",
"@snowplow/browser-tracker": "^3.1.1",
"canonicalize": "^2.0.0",
"jsonschema": "1.*",
"preact": "*"
},
"devDependencies": {
"@ironkinoko/rollup-plugin-styles": "^4.0.3",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-html": "^1.0.2",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.3",
"@types/chrome": "*",
"@types/elasticsearch": "^5.0.36",
"@types/har-format": "1.*",
"@types/node": "*",
"prettier": "^3.0.2",
"rollup": "^3.29.4",
"sass": "^1.23.7",
"tslib": "*",
"typescript": "^5.0.0"
}
}