-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.44 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
{
"name": "@optable/web-sdk",
"main": "./lib/dist/sdk.js",
"types": "./lib/dist/sdk.d.ts",
"browser": "./lib/dist/sdk.js",
"repository": "https://github.com/optable/optable-web-sdk",
"homepage": "https://optable.co",
"license": "SEE LICENSE IN LICENSE",
"version": "0.0.0-experimental",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/googletag": "^3.1.3",
"@types/jest": "^26.0.15",
"babel-jest": "^29.7.0",
"babel-loader": "^8.2.2",
"core-js": "^3.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"typescript": "^5.2.2",
"webpack": "^5.94.0",
"webpack-cli": "^4.7.2",
"whatwg-fetch": "^3.6.20"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"js-sha256": "^0.9.0",
"regenerator-runtime": "^0.13.7"
},
"files": [
"lib/dist/**/*.js",
"lib/dist/build.json",
"lib/dist/**/*.d.ts",
"browser/dist/**/*.js",
"LICENSE"
],
"scripts": {
"build": "npm run build-lib && npm run build-web",
"start": "tsc -b browser --watch & webpack --config=./browser/webpack.config.js --mode=development --watch --devtool=source-map",
"build-lib": "tsc -b lib",
"build-web": "tsc -b browser && webpack --config=./browser/webpack.config.js",
"test": "jest"
}
}