-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.46 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
{
"name": "svelte-loading-skeleton",
"description": "Customizable loading skeleton for Svelte",
"version": "1.0.1",
"author": "dylanblokhuis <[email protected]>",
"repository": {
"url": "dylanblokhuis/svelte-loading-skeleton",
"type": "git"
},
"svelte": "src/components/components.module.js",
"module": "dist/index.mjs",
"main": "dist/index.js",
"license": "MIT",
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-prettier": "4.3.0",
"eslint-plugin-svelte3": "1.2.3",
"husky": "2.4.0",
"lint-staged": "8.2.0",
"npm-run-all": "4.1.5",
"prettier": "1.18.2",
"rollup": "1.14.6",
"rollup-plugin-commonjs": "10.0.0",
"rollup-plugin-livereload": "1.0.0",
"rollup-plugin-node-resolve": "5.0.1",
"rollup-plugin-svelte": "5.0.3",
"rollup-plugin-terser": "5.0.0",
"sirv-cli": "0.4.4",
"svelte": "3.5.1"
},
"scripts": {
"build": "rollup -c",
"autobuild": "rollup -c -w",
"dev": "run-p start:dev autobuild",
"start": "sirv public",
"start:dev": "sirv public --dev",
"prepublishOnly": "npm run build"
},
"keywords": [
"svelte",
"loading",
"skeleton",
"progress"
],
"files": [
"src",
"dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js, svelte}": [
"eslint --fix",
"git add"
],
"*.{css, html, js, json}": [
"prettier --write",
"git add"
]
}
}