-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 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
57
58
59
60
61
{
"name": "@aws/clickstream-web",
"version": "0.12.2",
"description": "ClickstreamAnalytics Web SDK",
"license": "Apache-2.0",
"main": "./lib/index.js",
"module": "./lib-esm/index.js",
"typings": "./lib-esm/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "ts-node scripts/GenerateConfig.ts",
"build": "npm run prebuild && npm run clean && npm run build:esm && npm run build:cjs",
"build-dev": "npm run clean && npx tsc && npx webpack --config webpack.config.dev.js",
"build:cjs": "npx tsc --module commonjs && webpack && webpack --config webpack.config.dev.js",
"build:esm": "npx tsc --module esnext --outDir lib-esm",
"format": "npx prettier --check 'src/**/*.{js,ts}'",
"lint": "npx eslint src",
"test": "npm run prebuild && npx jest -w 1 --coverage",
"clean": "rimraf lib-esm lib dist",
"pack": "npm run build && npm pack"
},
"repository": {
"type": "git",
"url": "https://github.com/awslabs/clickstream-web.git"
},
"author": "AWS GCR Solutions Team",
"dependencies": {
"@aws-amplify/core": "^5.5.1",
"@aws-crypto/sha256-browser": "^4.0.0",
"tslib": "^2.6.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.1.0",
"@types/jsdom": "^21.1.1",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"babel-loader": "^9.1.3",
"eslint": "^8.43.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "^2.27.5",
"fetch-mock": "^9.11.0",
"jest-environment-jsdom": "29.5.0",
"terser-webpack-plugin": "^5.3.9",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4"
},
"files": [
"lib",
"lib-esm",
"src"
],
"engines": {
"node": ">=16.19.0"
}
}