-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 2.12 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
{
"name": "@gojek/clickstream-web",
"version": "1.0.3",
"description": "A Modern, Fast, and Lightweight Event Ingestion library for Web",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"types": "./types/index.d.ts",
"files": [
"dist",
"types"
],
"sideEffects": "false",
"scripts": {
"lint": "npx eslint src --ignore-path .gitignore",
"test": "jest",
"build": "rollup --config --environment PRODUCTION && npm run build:types",
"build:types": "npx tsc",
"release": "npm run build && standard-version",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gojek/clickstream-web.git"
},
"keywords": [
"clickstream",
"analytics"
],
"author": "Ashish Mishra <[email protected]>",
"license": "apache-2.0",
"bugs": {
"url": "https://github.com/gojek/clickstream-web/issues"
},
"homepage": "https://github.com/gojek/clickstream-web#readme",
"ava": {
"files": [
"test/**/*",
"!./test/protos"
],
"require": [
"./node_modules/protobufjs/minimal.js"
]
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-eslint": "^8.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"jest": "^29.0.1",
"jest-environment-jsdom": "^29.0.1",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"pretty-quick": "^3.1.3",
"rollup": "^2.77.2",
"rollup-plugin-terser": "^7.0.2",
"standard-version": "^9.5.0",
"typescript": "^4.7.4"
},
"dependencies": {
"protobufjs": "^7.0.0"
}
}