This repository has been archived by the owner on Jan 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.26 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
82
{
"name": "svb",
"version": "0.4.0-beta.0",
"description": "📦 A zero-config CLI to bundle Svelte apps",
"main": "lib/index.js",
"bin": {
"svelte-bundler": "bin/index.js",
"svb": "bin/index.js"
},
"scripts": {
"build": "rollup -c",
"release": "np --no-yarn",
"lint": "eslint ./ --quiet",
"lint:loud": "eslint ./",
"lint:fix": "eslint ./ --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"coverage:report": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"coverage:view": "jest --coverage && open ./coverage/lcov-report/index.html -a \"Google Chrome\""
},
"dependencies": {
"chalk": "^2.4.2",
"chokidar": "^3.1.1",
"commander": "^3.0.1",
"console-clear": "^1.1.1",
"fs-extra": "^8.1.0",
"get-port": "^5.0.0",
"html-minifier": "^4.0.0",
"pupa": "^2.0.1",
"read-pkg-up": "^6.0.0",
"rollup": "^1.21.4",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-livereload": "^1.0.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-svelte": "^5.1.0",
"rollup-plugin-terser": "^5.1.2",
"svelte": "^3.12.1",
"update-notifier": "^3.0.1"
},
"devDependencies": {
"coveralls": "^3.0.6",
"eslint": "^6.4.0",
"eslint-config-himynameisdave": "^1.0.0-beta.1",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^11.0.0",
"jest": "^24.9.0",
"np": "^5.1.0"
},
"engines": {
"node": ">= 8.16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/himynameisdave/svelte-bundler.git"
},
"keywords": [
"svelte",
"bundler",
"compiler",
"rollup",
"zero-configuration",
"svelte-cli"
],
"author": {
"name": "Dave Lunny",
"email": "d@velunny.com",
"url": "http://himynameisdave.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/himynameisdave/svelte-bundler/issues"
},
"homepage": "https://himynameisdave.github.io/svb/#/",
"private": false
}