-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
81 lines (81 loc) · 2.48 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
{
"name": "video-ad-sdk",
"version": "0.0.0",
"description": "VAST/VPAID SDK that allows video ads to be played on top of any player",
"keywords": [
"vast",
"vpaid",
"ads",
"video-ads"
],
"main": "dist/",
"module": "dist/",
"types": "dist/index.d.ts",
"author": "MailOnline <fe@mailonline.co.uk>",
"bugs": {
"url": "https://github.com/rambler-digital-solutions/video-ad-sdk/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rambler-digital-solutions/video-ad-sdk.git"
},
"homepage": "https://github.com/rambler-digital-solutions/video-ad-sdk#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --mode development",
"demo": "NODE_ENV=production webpack --mode=production",
"build": "tsc -p tsconfig.lib.json",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint '**/*.{js,ts}'",
"format": "prettier --write '**/*.{js,ts}' && eslint '**/*.{js,ts}' --fix",
"typecheck": "tsc --noEmit",
"sizecheck": "tsc -p tsconfig.lib.json && size-limit",
"docs": "typedoc",
"release": "semantic-release",
"prepare": "[ -n \"$CI\" ] && exit 0 || husky install"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"sane-domparser-error": "^0.2.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@rambler-tech/eslint-config": "^0.13.1",
"@rambler-tech/prettier-config": "^0.1.0",
"@rambler-tech/ts-config": "^0.1.1",
"@rambler-tech/typedoc-config": "^0.3.1",
"@size-limit/preset-small-lib": "^9.0.0",
"@types/jest": "^29.5.5",
"@types/lodash.debounce": "^4.0.7",
"@types/mockdate": "^3.0.0",
"@types/node": "^20.8.4",
"css-loader": "^6.8.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^14.0.1",
"mini-css-extract-plugin": "^2.7.6",
"mockdate": "^3.0.5",
"prettier": "^3.0.3",
"semantic-release": "^22.0.5",
"size-limit": "^9.0.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.0",
"typedoc": "^0.25.2",
"typescript": "^5.3.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"whatwg-fetch": "^3.6.19"
}
}