-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.48 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "autocapture.js",
"version": "1.0.0-alpha.2.1",
"description": "Build your own analytics - A single library to grabs every click, touch, page-view, and fill — forever.",
"license": "MIT",
"type": "module",
"jsdelivr": "./dist/autocapture.umd.js",
"unpkg": "./dist/autocapture.umd.js",
"main": "./dist/autocapture.js",
"scripts": {
"dev": "rollup -c -w",
"build": "tsc --noEmit && rollup -c --environment NODE_ENV:production",
"build:docs": "typedoc --out docs --entryPoints src/index.ts --theme default",
"lint-js": "eslint \"src/**/*.{js,ts}\" \"test/**/*.js\" \"docs/**/*.js\"",
"lint-md": "eslint \"**/*.md\"",
"lint-types": "eslint \"types/**/*.ts\" && yarn build && node types/tests/autogen.js && tsc -p types/tests/",
"lint": "concurrently \"yarn:lint-*\""
},
"exports": {
".": {
"import": "./dist/autocapture.js",
"types": "./dist/types.d.ts"
}
},
"types": "./dist/types.d.ts",
"keywords": [
"autocapture",
"dom",
"data",
"events",
"user-behavior",
"web-analytics",
"analytics"
],
"files": [
"dist/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/seeratawan01/autocapture.js.git"
},
"author": "Seerat Awan",
"bugs": {
"url": "https://github.com/seeratawan01/autocapture.js/issues"
},
"homepage": "https://github.com/seeratawan01/autocapture.js#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-inject": "^4.0.4",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-strip": "^3.0.1",
"@size-limit/preset-big-lib": "^8.0.0",
"@swc/core": "^1.2.224",
"@types/estree": "^1.0.0",
"@types/offscreencanvas": "^2019.7.0",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"concurrently": "^7.3.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.21.0",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-markdown": "^3.0.0",
"esm": "^3.2.25",
"glob": "^8.0.3",
"jasmine": "^3.7.0",
"jasmine-core": "^3.7.1",
"rollup": "^2.77.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-istanbul": "^3.0.0",
"rollup-plugin-swc3": "^0.3.0",
"rollup-plugin-terser": "^7.0.2",
"size-limit": "^8.0.0",
"typedoc": "^0.23.17",
"typescript": "^4.7.4",
"yargs": "^17.5.1"
}
}