-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
114 lines (114 loc) · 3.64 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"scripts": {
"build": "yarn run clean && cross-env NODE_ENV=production webpack && yarn run e2e-build",
"clean": "rimraf \"dist/!(*.d.ts)\" dist/sw",
"lint": "yarn eslint 'src/**/*.{ts,tsx}'",
"start": "cross-env NODE_ENV=development webpack --watch",
"e2e-build": "mkdir -p ./test/e2e/dist/ && cp ./dist/leanplum.js ./test/e2e/dist/leanplum.js && tsc --project tsconfig.e2e.json && yarn run e2e-copy",
"e2e-copy": "cp ./test/e2e/*.html ./dist/e2e/ && cp ./dist/*.js ./dist/e2e/ && cp ./dist/sw/*.js ./dist/e2e/",
"e2e-deploy": "yarn run e2e-build && now deploy dist/e2e --confirm --local-config vercel.json",
"e2e-serve": "yarn run e2e-build && http-server dist/e2e -p 8989 -a localhost",
"publish-gtm": "yarn ts-node build/gtm-script.ts",
"test": "jest"
},
"license": "Apache-2.0",
"devDependencies": {
"@semantic-release/exec": "^6.0.3",
"@types/bootstrap": "^4.5.0",
"@types/clevertap-web-sdk": "1.1.11",
"@types/jest": "^25.2.1",
"@types/jquery": "^3.3.38",
"@types/node": "^13.13.4",
"@types/sha.js": "^2.4.0",
"@types/webpack": "^5",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"chai": "^3.5.0",
"cross-env": "^7.0.2",
"dts-bundle": "^0.7.3",
"eslint": "^6.8.0",
"eslint-loader": "^4.0.0",
"fork-ts-checker-webpack-plugin": "^4.1.3",
"http-server": "^0.12.1",
"jest": "^29",
"jest-environment-jsdom": "^29.3.1",
"jsdom": "^20.0.3",
"lodash.isequal": "^4.5.0",
"lodash.merge": "^4.6.2",
"mock-local-storage": "^1.0.2",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"sinon": "^2.1.0",
"ts-jest": "^29",
"ts-loader": "^9",
"ts-node": "^10",
"typescript": "^4",
"webpack": "^5",
"webpack-cli": "^5"
},
"name": "leanplum-sdk",
"description": "The JavaScript SDK for Leanplum allows developers to integrate the Leanplum platform with applications that use JavaScript and HTML5. Leanplum is an customer engagement platform that provides mobile A/B testing, messaging, and personalization features for websites and web applications.",
"version": "1.9.1-develop.2",
"main": "dist/leanplum.min.js",
"types": "dist/leanplum.d.ts",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Leanplum/Leanplum-JavaScript-SDK.git"
},
"keywords": [
"leanplum",
"sdk",
"analytics",
"push",
"notifications",
"messaging"
],
"author": "Leanplum Inc.",
"bugs": {
"url": "https://github.com/Leanplum/Leanplum-JavaScript-SDK/issues"
},
"release": {
"repositoryUrl": "[email protected]:Leanplum/Leanplum-JavaScript-SDK.git",
"tagFormat": "${version}",
"branches": [
"master",
{
"name": "develop",
"channel": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/exec",
{
"prepareCmd": "./bump_version.sh ${nextRelease.version} && yarn run build"
}
],
"@semantic-release/npm",
"@semantic-release/github",
[
"@qiwi/semrel-metabranch",
{
"publish": {
"action": "push",
"branch": "gh-pages",
"from": "./dist/e2e",
"to": "./",
"message": "Update test app to ${nextRelease.gitTag}"
}
}
]
]
},
"homepage": "https://github.com/Leanplum/Leanplum-JavaScript-SDK#readme",
"dependencies": {
"@qiwi/semrel-metabranch": "^3.1.2",
"clevertap-web-sdk": "1.9.2"
}
}