forked from matyunya/svelte-waypoint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.68 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
{
"name": "svelte-waypoint",
"description": "Lazyload images or anything in Svelte",
"license": "MIT",
"repository": "https://github.com/matyunya/svelte-waypoint",
"svelte": "src/Waypoint.svelte",
"module": "dist/index.min.mjs",
"main": "dist/index.min.js",
"version": "0.1.4",
"devDependencies": {
"@babel/core": "7.4.5",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-runtime": "7.4.4",
"@babel/preset-env": "7.4.5",
"autoprefixer": "9.6.0",
"eslint": "6.0.1",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-svelte3": "2.4.0",
"husky": "2.7.0",
"lint-staged": "8.2.1",
"npm-run-all": "4.1.5",
"postcss": "7.0.17",
"prettier": "1.18.2",
"rollup": "1.16.3",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.0.1",
"rollup-plugin-livereload": "1.0.1",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-svelte": "5.1.0",
"rollup-plugin-terser": "5.0.0",
"sirv-cli": "0.4.4",
"svelte": "3.16.7",
"svelte-preprocess": "2.14.1"
},
"scripts": {
"build": "rollup -c",
"autobuild": "rollup -c -w",
"dev": "run-p start:dev autobuild",
"start": "sirv public --single",
"start:dev": "sirv public --single --dev",
"prepublishOnly": "npm run build"
},
"browserslist": [
"defaults"
],
"keywords": [
"svelte"
],
"files": [
"src",
"dist/index.min.mjs",
"dist/index.min.js"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js, svelte}": [
"eslint --fix",
"git add"
],
"*.{css, html, js, json}": [
"prettier --write",
"git add"
]
}
}