0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-11-28 07:52:41 +01:00
svelte/package.json

99 lines
2.6 KiB
JSON
Raw Normal View History

2016-11-16 01:33:17 +01:00
{
"name": "svelte",
2019-05-27 12:58:59 +02:00
"version": "3.4.4",
2019-04-21 13:01:18 +02:00
"description": "Cybernetically enhanced web apps",
"module": "index.mjs",
2019-02-01 16:40:53 +01:00
"main": "index",
2016-11-22 22:14:29 +01:00
"files": [
2019-05-27 12:50:00 +02:00
"types",
"compiler.*",
"register.js",
"index.*",
2019-05-27 21:36:02 +02:00
"internal",
"store",
"animate",
"transition",
"easing",
"motion",
2018-04-30 02:27:18 +02:00
"svelte",
2016-11-22 22:14:29 +01:00
"README.md"
],
2019-05-27 21:36:02 +02:00
"types": "types/runtime",
2016-11-16 01:33:17 +01:00
"scripts": {
2016-11-22 17:55:06 +01:00
"test": "mocha --opts mocha.opts",
2019-02-17 22:46:52 +01:00
"test:unit": "mocha --require sucrase/register --recursive ./**/__test__.ts",
2017-09-02 22:29:02 +02:00
"quicktest": "mocha --opts mocha.opts",
2019-01-26 18:50:35 +01:00
"precoverage": "c8 mocha --opts mocha.coverage.opts",
"coverage": "c8 report --reporter=text-lcov > coverage.lcov && c8 report --reporter=html",
2016-11-27 14:49:25 +01:00
"codecov": "codecov",
"precodecov": "npm run coverage",
"build": "rollup -c",
2019-05-13 00:25:32 +02:00
"prepare": "npm run build && npm run tsd",
2019-01-26 18:50:35 +01:00
"dev": "rollup -cw",
"pretest": "npm run build",
2019-05-27 21:36:02 +02:00
"posttest": "agadoo internal/index.mjs",
"prepublishOnly": "export PUBLISH=true && npm test && npm run create-stubs",
"create-stubs": "node scripts/create-stubs.js",
2019-05-22 07:31:39 +02:00
"tsd": "tsc -p . --emitDeclarationOnly",
"typecheck": "tsc -p . --noEmit"
2016-11-16 01:33:17 +01:00
},
"repository": {
"type": "git",
2016-11-20 19:14:34 +01:00
"url": "https://github.com/sveltejs/svelte.git"
2016-11-16 01:33:17 +01:00
},
"keywords": [
"UI",
"framework",
"templates",
"templating"
],
"author": "Rich Harris",
"license": "MIT",
"bugs": {
2016-11-20 19:14:34 +01:00
"url": "https://github.com/sveltejs/svelte/issues"
2016-11-16 01:33:17 +01:00
},
2016-11-20 19:14:34 +01:00
"homepage": "https://github.com/sveltejs/svelte#README",
2016-11-16 01:33:17 +01:00
"devDependencies": {
2019-03-29 13:21:59 +01:00
"@sveltejs/svelte-repl": "0.0.5",
2018-04-22 16:24:40 +02:00
"@types/mocha": "^5.2.0",
2018-08-04 02:00:41 +02:00
"@types/node": "^10.5.5",
2019-03-15 20:19:08 +01:00
"acorn": "^6.1.1",
2019-01-04 15:04:19 +01:00
"acorn-dynamic-import": "^4.0.0",
2018-09-26 03:28:01 +02:00
"agadoo": "^1.0.1",
2019-01-26 18:50:35 +01:00
"c8": "^3.4.0",
2018-04-22 16:24:40 +02:00
"codecov": "^3.0.0",
"css-tree": "1.0.0-alpha22",
"estree-walker": "^0.6.1",
"is-reference": "^1.1.1",
2019-01-26 19:12:59 +01:00
"jsdom": "^12.2.0",
"kleur": "^3.0.0",
"locate-character": "^2.0.5",
2019-02-03 18:43:29 +01:00
"magic-string": "^0.25.2",
2018-08-04 05:30:25 +02:00
"mocha": "^5.2.0",
2019-03-10 21:00:37 +01:00
"puppeteer": "^1.13.0",
2019-01-26 18:50:35 +01:00
"rollup": "^1.1.2",
2018-04-22 16:24:40 +02:00
"rollup-plugin-commonjs": "^9.1.0",
2018-08-04 02:00:41 +02:00
"rollup-plugin-json": "^3.0.0",
2019-01-26 18:50:35 +01:00
"rollup-plugin-node-resolve": "^4.0.0",
2017-11-23 14:45:22 +01:00
"rollup-plugin-replace": "^2.0.0",
2019-01-27 02:52:56 +01:00
"rollup-plugin-sucrase": "^2.1.0",
2019-01-26 18:50:35 +01:00
"rollup-plugin-typescript": "^1.0.0",
"rollup-plugin-virtual": "^1.0.1",
2018-04-22 16:24:40 +02:00
"source-map": "0.6",
"source-map-support": "^0.5.4",
"tiny-glob": "^0.2.1",
2019-01-26 18:50:35 +01:00
"ts-node": "^8.0.2",
2017-11-12 21:20:13 +01:00
"tslib": "^1.8.0",
"typescript": "^3.4.0"
2016-11-16 01:33:17 +01:00
},
2016-11-21 13:07:42 +01:00
"nyc": {
"include": [
2017-11-23 14:45:22 +01:00
"compiler/svelte.js",
2017-05-04 18:25:20 +02:00
"shared.js"
2016-11-21 13:07:42 +01:00
],
2017-11-23 14:45:22 +01:00
"sourceMap": true,
"instrument": true
},
"dependencies": {}
2016-11-16 01:33:17 +01:00
}