This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 2.06 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": "svelte-plyr",
"version": "0.1.4",
"author": "Ben Woodward",
"description": "A thin svelte wrapper around Plyr.js",
"repository": {
"type": "git",
"url": "git+https://github.com/benwoodward/svelte-plyr.git"
},
"browserslist": [
"defaults"
],
"devDependencies": {
"@babel/core": "7.7.7",
"@babel/plugin-syntax-dynamic-import": "7.7.4",
"@babel/plugin-transform-runtime": "7.7.6",
"@babel/preset-env": "7.7.7",
"@testing-library/cypress": "5.0.2",
"autoprefixer": "9.7.3",
"cypress": "3.8.1",
"eslint": "6.8.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-cypress": "2.8.1",
"eslint-plugin-svelte3": "2.7.3",
"husky": "3.1.0",
"lint-staged": "9.5.0",
"node-sass": "4.13.0",
"plyr": "3.5.6",
"postcss": "7.0.25",
"postcss-import": "12.0.1",
"prettier": "1.19.1",
"rollup": "1.27.14",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-livereload": "1.0.4",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-postcss": "2.0.3",
"rollup-plugin-svelte": "5.1.1",
"rollup-plugin-terser": "5.1.3",
"sirv-cli": "0.4.5",
"start-server-and-test": "1.10.6",
"svelte": "3.16.7",
"svelte-preprocess": "3.3.0"
},
"files": [
"src",
"dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"svelte"
],
"license": "MIT",
"lint-staged": {
"*.{html, css, scss, stylus, js, ts, json, yml, md}": [
"prettier --write",
"git add"
],
"*.{js, svelte}": [
"eslint --fix",
"git add"
]
},
"main": "dist/index.min.js",
"module": "dist/index.min.mjs",
"scripts": {
"build": "rollup -c",
"cy:open": "cypress open",
"cy:run": "cypress run",
"dev": "rollup -c -w",
"lint": "eslint --color --ignore-path .gitignore .",
"prepublishOnly": "npm run build",
"start": "sirv public",
"test": "start-server-and-test dev http://localhost:5000 cy:run"
},
"svelte": "src/components/components.module.js"
}