This repository has been archived by the owner on Jan 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.4 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
{
"version": "3.0.9",
"name": "@stroeer/stroeer-videoplayer-ima-plugin",
"description": "Ströer Videoplayer IMA Plugin",
"main": "dist/stroeervideoplayer-ima-plugin.umd.js",
"module": "dist/stroeervideoplayer-ima-plugin.esm.js",
"files": [
"dist",
"types"
],
"types": "types/types.d.ts",
"scripts": {
"dev": "rollup -c rollup.config.dev.js -w",
"start": "lite-server",
"build": "npm-run-all build:*",
"build:js": "rollup -c",
"build:css": "sass src/ima.scss ./dist/stroeervideoplayer-ima-plugin.css",
"watch": "npm-run-all watch:*",
"watch:devjs": "rollup -c rollup.config.dev.js -w",
"watch:js": "rollup -c -w",
"watch:css": "sass --watch src/ima.scss ./dist/stroeervideoplayer-ima-plugin.css",
"lint": "eslint src/*.ts src/**/*.ts",
"stylelint": "stylelint 'src/*.scss'",
"stylelint:fix": "stylelint --fix 'src/*.scss'",
"test": "jest src",
"test:coverage": "jest src --coverage"
},
"repository": {
"type": "git",
"url": "[email protected]:stroeer/stroeer-videoplayer-ima-plugin.git"
},
"author": "Marco Kellershoff <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.8",
"@babel/preset-typescript": "7.16.7",
"@rollup/plugin-commonjs": "21.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "13.1.3",
"@rollup/plugin-typescript": "8.3.1",
"@stroeer/stroeer-videoplayer": "^1.2.0",
"@stroeer/stroeer-videoplayer-default-ui": "^2.0.0",
"@stroeer/stroeer-videoplayer-ima-ui": "^1.0.1",
"@stroeer/stroeer-videoplayer-plugin-endcard": "^2.0.1",
"@superevilmegaco/jest-evil-svg-transformer": "^0.0.4",
"@types/jest": "27.4.1",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.0",
"eslint": "7",
"eslint-config-standard-with-typescript": "21.0.1",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "2",
"eslint-plugin-node": "11",
"eslint-plugin-promise": "4",
"jest": "27.5.1",
"jest-coverage-badges": "^1.1.2",
"lite-server": "2.6.1",
"npm-run-all": "4.1.5",
"rollup": "2.70.1",
"rollup-plugin-scss": "3.0.0",
"rollup-plugin-svg": "^2.0.0",
"sass": "1.49.9",
"ts-jest": "27.1.3",
"ts-node": "10.7.0",
"ts-standard": "11.0.0",
"tslib": "2.3.1",
"typescript": "4.0.8",
"whatwg-fetch": "^3.6.2"
},
"dependencies": {
"stylelint": "^14.15.0",
"stylelint-config-standard-scss": "^6.1.0"
}
}