-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2 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
{
"version": "1.0.1",
"name": "@stroeer/stroeer-videoplayer-ivad-ui",
"description": "Ströer Videoplayer IVAD UI",
"main": "dist/StroeerVideoplayer-ivad-ui.cjs.js",
"module": "dist/StroeerVideoplayer-ivad-ui.esm.js",
"files": [
"dist"
],
"types": "dist/types/UI.d.ts",
"scripts": {
"build": "npm-run-all build:*",
"build:js": "rollup -c",
"build:css": "sass src/UI.scss ./dist/StroeerVideoplayer-ivad-ui.css",
"build:types": "rm -rf dist/types && npx tsc && mv dist/src dist/types",
"watch": "npm-run-all watch:*",
"watch:js": "rollup -c -w",
"watch:css": "sass --watch src/UI.scss ./dist/StroeerVideoplayer-ivad-ui.css",
"lint": "eslint src/*.ts src/**/*.ts",
"lint:fix": "eslint --fix src/*.ts src/**/*.ts",
"test": "jest src",
"test:coverage": "jest src --coverage"
},
"repository": {
"type": "git",
"url": "[email protected]:stroeer/stroeer-videoplayer-ivad-ui.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.0.1",
"@superevilmegaco/jest-evil-svg-transformer": "0.0.4",
"@types/jest": "27.4.1",
"@types/mocha": "9.1.0",
"@types/node": "17.0.22",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.0",
"cypress": "9.5.2",
"eslint": "7.32.0",
"eslint-config-standard-with-typescript": "21.0.1",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-import": "2",
"eslint-plugin-node": "11",
"eslint-plugin-promise": "5.0.0",
"jest": "27.5.1",
"npm-run-all": "4.1.5",
"rollup": "2.70.1",
"rollup-plugin-svg": "2.0.0",
"sass": "1.49.9",
"serve": "13.0.2",
"svg-sprite": "1.5.4",
"ts-jest": "27.1.3",
"ts-node": "10.7.0",
"ts-standard": "11.0.0",
"tslib": "2.3.1",
"typescript": "4.0.8"
}
}