forked from customerio/cdp-analytics-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.2 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
{
"name": "@customerio/cdp-analytics-node",
"version": "0.1.3",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist/",
"src/",
"!**/__tests__/**",
"!*.tsbuildinfo"
],
"engines": {
"node": ">=14"
},
"scripts": {
"test": "yarn jest",
"lint": "yarn concurrently 'yarn:eslint .' 'yarn:tsc --noEmit'",
"build": "rm -rf dist && yarn concurrently 'yarn:build:*'",
"build:cjs": "yarn tsc -p tsconfig.build.json --outDir ./dist/cjs --module commonjs",
"build:esm": "yarn tsc -p tsconfig.build.json",
"watch": "yarn build:esm --watch",
"watch:test": "yarn test --watch",
"tsc": "yarn run -T tsc",
"eslint": "yarn run -T eslint",
"concurrently": "yarn run -T concurrently",
"jest": "yarn run -T jest",
"prepublish": "yarn run -T build"
},
"dependencies": {
"@customerio/cdp-analytics-core": "0.1.3",
"@lukeed/uuid": "^2.0.0",
"buffer": "^6.0.3",
"node-fetch": "^2.6.7",
"tslib": "^2.4.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@internal/config": "0.0.0",
"@types/node": "^14",
"@types/uuid": "^9"
},
"packageManager": "[email protected]"
}