-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
{
"name": "vidbg.js",
"version": "2.1.0",
"description": "A minimal vanilla JavaScript video background plugin.",
"module": "dist/vidbg.js",
"browser": "dist/vidbg.js",
"types": "dist/types/vidbg.d.ts",
"scripts": {
"start": "webpack --watch --mode development",
"build": "webpack",
"format": "prettier --write ./src",
"test": "npm run build && jest",
"build-gh-release-artifact": "zip vidbg.zip -r dist README.md LICENSE"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": ["video background", "video"],
"repository": {
"type": "git",
"url": "git+https://github.com/blakewilson/vidbg.git"
},
"author": "Blake Wilson (https://blake.id)",
"license": "MIT",
"bugs": {
"url": "https://github.com/blakewilson/vidbg/issues"
},
"homepage": "https://github.com/blakewilson/vidbg#readme",
"browserslist": "> 0.25%, not dead, ie >= 11",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.15",
"@types/expect-puppeteer": "^4.4.5",
"@types/jest": "^26.0.22",
"@types/jest-environment-puppeteer": "^4.4.1",
"@types/puppeteer": "^5.4.3",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^8.1.1",
"hex-rgb": "^4.3.0",
"jest": "^26.6.3",
"jest-puppeteer": "^4.4.0",
"prettier": "^2.2.1",
"puppeteer": "^8.0.0",
"terser-webpack-plugin": "^5.1.1",
"ts-jest": "^26.5.4",
"ts-loader": "^8.1.0",
"typescript": "^4.2.4",
"webpack": "^5.31.2",
"webpack-cli": "^4.6.0"
}
}