-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.75 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
{
"name": "clappr-marquee",
"version": "0.2.12",
"description": "Marquee plugin for the Clappr project",
"main": "./dist/marquee.js",
"module": "./dist/marquee.esm.js",
"scripts": {
"bundle-check": "ANALYZE_BUNDLE=true rollup -c",
"release": "MINIMIZE=true rollup -c",
"build": "rollup -c",
"watch": "rollup -c --watch",
"lint": "eslint *.js src/",
"lint:fix": "npm run lint -- --fix",
"start": "DEV=true rollup -c --watch"
},
"files": [
"/dist",
"/src"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "[email protected]:datarhei/clappr-marquee.git"
},
"author": {
"name": "Ingo Oppermann",
"email": "[email protected]",
"url": "https://github.com/datarhei"
},
"keywords": [
"clappr",
"plugin",
"marquee"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/datarhei/clappr-marquee/issues"
},
"homepage": "https://github.com/datarhei/clappr-marquee",
"peerDependencies": {
"@clappr/core": "^0.4.17"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@clappr/core": "^0.4.17",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^2.3.4",
"autoprefixer": "9.8.6",
"eslint": "^7.17.0",
"postcss": "^8.2.4",
"postcss-url": "^10.1.1",
"rollup": "^2.36.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.32.11",
"url-regex-safe": "^2.0.2"
},
"browserslist": [
"last 2 versions",
">0.2%",
"not dead",
"not op_mini all"
]
}