svb
Version:
📦 A zero-config CLI to bundle Svelte apps
83 lines (82 loc) • 2.32 kB
JSON
{
"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
}