-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
55 lines (54 loc) · 1.52 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
{
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/jest-dom": "^6.1.5",
"@types/jest": "^29.5.11",
"@types/jsdom": "^21.1.6",
"@types/lodash": "^4.14.179",
"@types/lodash-es": "^4.17.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^23.0.1",
"rollup": "^4.12.0",
"rollup-plugin-dts": "^6.1.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.2.7",
"tslib": "^2.6.2",
"typescript": "^4.6.2"
},
"name": "visitdata",
"description": "Get traffic source data like Google Analytics",
"version": "1.3.2",
"main": "./dist/visitdata.cjs.js",
"module": "./dist/visitdata.esm.js",
"types": "./dist/visitdata.esm.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/visitdata.esm.js",
"require": "./dist/visitdata.cjs.js"
}
},
"unpkg": "./dist/visitdata.umd.js",
"scripts": {
"build": "rm -rf dist/* && npx rollup -c && rm -rf dist/types",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ilkkapeltola/visitdata.git"
},
"keywords": [],
"author": "Ilkka Peltola",
"license": "ISC",
"bugs": {
"url": "https://github.com/ilkkapeltola/visitdata/issues"
},
"homepage": "https://github.com/ilkkapeltola/visitdata#readme"
}