{ "name": "svelte", "version": "1.42.0", "description": "The magical disappearing UI framework", "main": "compiler/svelte.js", "files": [ "compiler", "ssr", "shared.js", "README.md" ], "scripts": { "test": "mocha --opts mocha.opts", "quicktest": "mocha --opts mocha.opts", "precoverage": "export COVERAGE=true && nyc mocha --opts mocha.coverage.opts", "coverage": "nyc report --reporter=text-lcov > coverage.lcov", "codecov": "codecov", "precodecov": "npm run coverage", "lint": "eslint src test/*.js", "build": "node src/shared/_build.js && rollup -c", "prepare": "npm run build", "dev": "node src/shared/_build.js && rollup -c -w", "pretest": "npm run build", "prepublishOnly": "npm run lint && npm test", "prettier": "prettier --write \"src/**/*.ts\"" }, "repository": { "type": "git", "url": "https://github.com/sveltejs/svelte.git" }, "keywords": [ "UI", "framework", "templates", "templating" ], "author": "Rich Harris", "license": "MIT", "bugs": { "url": "https://github.com/sveltejs/svelte/issues" }, "homepage": "https://github.com/sveltejs/svelte#README", "devDependencies": { "@types/mocha": "^2.2.41", "@types/node": "^8.0.17", "acorn": "^5.1.1", "chalk": "^2.0.1", "codecov": "^2.2.0", "console-group": "^0.3.2", "css-tree": "1.0.0-alpha22", "eslint": "^4.3.0", "eslint-plugin-html": "^3.0.0", "eslint-plugin-import": "^2.2.0", "estree-walker": "^0.5.0", "glob": "^7.1.1", "jsdom": "^11.1.0", "locate-character": "^2.0.0", "magic-string": "^0.22.3", "mocha": "^3.2.0", "nightmare": "^2.10.0", "node-resolve": "^1.3.3", "nyc": "^11.1.0", "prettier": "^1.7.0", "rollup": "^0.48.2", "rollup-plugin-buble": "^0.15.0", "rollup-plugin-commonjs": "^8.0.2", "rollup-plugin-json": "^2.1.0", "rollup-plugin-node-resolve": "^3.0.0", "rollup-plugin-typescript": "^0.8.1", "rollup-plugin-virtual": "^1.0.1", "rollup-watch": "^4.3.1", "source-map": "^0.5.6", "source-map-support": "^0.4.8", "tslib": "^1.8.0", "typescript": "^2.3.2" }, "nyc": { "include": [ "src/**/*.js", "shared.js" ], "exclude": [ "src/**/__test__.js", "src/shared/**" ] } }