-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
94 lines (94 loc) · 3.38 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
{
"name": "@adjustcom/adjust-web-sdk",
"version": "5.7.1",
"description": "This is the guide to the Javascript SDK of Adjust™ for web sites or web apps. You can read more about Adjust™ at [adjust.com].",
"scripts": {
"build:demo": "webpack --mode production --config webpack.demo.config.js",
"build:sdk": "webpack --config webpack.sdk.config.js",
"build:snippet": "terser -d env.INTEGRITY=0 ./src/snippet.js -o ./dist/sdk.snippet.min.js -c -m",
"build:snippet-sri": "INTEGRITY=(\"sha384-$(openssl dgst -sha384 -binary ./dist/adjust-latest.min.js | openssl base64 -A)\") && terser -d env.INTEGRITY=\"'$INTEGRITY'\" ./src/snippet.js -o ./dist/sdk.snippet-sri.min.js -c -m && printf $INTEGRITY > dist/INTEGRITY",
"build": "npm-run-all build:sdk build:demo build:snippet build:snippet-sri",
"clean": "rm -rf ./demo/*",
"start": "webpack serve --hot --mode development --config webpack.demo.config.js",
"lint": "eslint ./src --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"test": "TZ=UTC jest",
"test:watch": "TZ=UTC jest --watchAll",
"test:coverage": "TZ=UTC jest --coverage",
"test:all": "npm-run-all test lint flow",
"flow": "flow status --quiet",
"prepublishOnly": "npm run test:all"
},
"main": "dist/adjust-latest.js",
"types": "dist/adjust-latest.d.ts",
"keywords": [],
"author": "Adjust GmbH",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@babel/plugin-transform-flow-comments": "^7.24.1",
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.4",
"@babel/preset-flow": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"core-js": "^3.37.0",
"css-loader": "^7.1.1",
"css-minimizer-webpack-plugin": "^6.0.0",
"eslint": "^8.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-jest": "^28.3.0",
"eslint-webpack-plugin": "^4.1.0",
"fake-indexeddb": "^5.0.2",
"flow-bin": "^0.235.1",
"flowtype-webpack-plugin": "^0.0.3",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-localstorage-mock": "^2.4.26",
"mini-css-extract-plugin": "^2.9.0",
"npm-run-all": "^4.1.5",
"regenerator-runtime": "^0.14.1",
"sass": "^1.75.0",
"sass-loader": "^14.2.1",
"template-ejs-loader": "^0.9.4",
"terser": "^5.30.4",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@babel/runtime": "^7.24.4"
},
"directories": {
"doc": "docs"
},
"files": [
"dist/adjust-latest.d.ts",
"dist/adjust-latest.js",
"dist/adjust-latest.min.js",
"docs/**/*",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/adjust/web_sdk.git"
},
"bugs": {
"url": "https://github.com/adjust/web_sdk/issues"
},
"homepage": "https://github.com/adjust/web_sdk#readme"
}