-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
{
"name": "@aws/clickstream-wechat",
"version": "0.1.2",
"description": "Wechat Miniprogram SDK for Clickstream Analytics on AWS",
"main": "index.ts",
"scripts": {
"clean": "rimraf lib dist ./src/config.ts",
"prebuild": "ts-node scripts/GenerateConfig.ts",
"build": "npm run prebuild && npx tsc && webpack --config webpack.config.dev.js",
"release": "npm run format && npm run lint && npm run test && npm run build && webpack",
"format": "npx prettier --check 'src/**/*.{js,ts}'",
"lint": "npx eslint src",
"test": "npx jest -w 1 --coverage",
"pack": "npm run build && npm pack"
},
"repository": {
"type": "git",
"url": "https://github.com/awslabs/clickstream-wechat.git"
},
"author": "AWS GCR Solutions Team",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/awslabs/clickstream-wechat/issues"
},
"homepage": "https://github.com/awslabs/clickstream-wechat#readme",
"devDependencies": {
"@types/crypto-js": "^4.1.2",
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"jest-environment-jsdom": "^29.6.4",
"miniprogram-api-typings": "^3.12.0",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "~5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"files": [
"lib",
"src"
],
"engines": {
"node": ">=18.18.1"
},
"dependencies": {
"crypto-js": "^4.1.1",
"tslib": "^2.6.2"
}
}