0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-11-30 00:46:29 +01:00
svelte/package.json

103 lines
2.8 KiB
JSON
Raw Normal View History

2016-11-16 01:33:17 +01:00
{
"name": "svelte",
2019-10-16 23:56:30 +02:00
"version": "3.13.0-alpha.0",
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-06-07 16:05:59 +02:00
"engines": {
"node": ">= 8"
2019-06-07 16:05:59 +02:00
},
2019-06-09 22:35:44 +02:00
"types": "types/runtime/index.d.ts",
2016-11-16 01:33:17 +01:00
"scripts": {
2016-11-22 17:55:06 +01:00
"test": "mocha --opts mocha.opts",
"test:unit": "mocha --require sucrase/register --recursive src/**/__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 && npm run tsd",
2019-06-09 23:34:57 +02:00
"prepare": "npm run build",
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": "npm run lint && PUBLISH=true npm test",
2019-06-13 08:11:52 +02:00
"tsd": "tsc -p src/compiler --emitDeclarationOnly && tsc -p src/runtime --emitDeclarationOnly",
"lint": "eslint \"{src,test}/**/*.{ts,js}\""
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-07-07 16:30:30 +02:00
"@types/mocha": "^5.2.7",
2019-09-04 03:10:59 +02:00
"@types/node": "^8.10.53",
2019-09-04 03:46:41 +02:00
"@typescript-eslint/eslint-plugin": "^1.13.0",
2019-09-04 03:10:59 +02:00
"@typescript-eslint/parser": "^2.1.0",
2019-10-21 04:42:59 +02:00
"acorn": "^7.1.0",
"agadoo": "^1.1.0",
2019-07-07 16:30:30 +02:00
"c8": "^5.0.1",
2019-10-21 04:42:59 +02:00
"code-red": "0.0.18",
2019-07-07 16:30:30 +02:00
"codecov": "^3.5.0",
"css-tree": "1.0.0-alpha22",
2019-09-04 03:10:59 +02:00
"eslint": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
2019-09-04 03:10:59 +02:00
"eslint-plugin-svelte3": "^2.7.3",
2019-10-16 16:57:23 +02:00
"estree-walker": "^0.8.1",
2019-10-21 04:42:59 +02:00
"is-reference": "^1.1.4",
2019-07-07 16:30:30 +02:00
"jsdom": "^15.1.1",
"kleur": "^3.0.3",
"locate-character": "^2.0.5",
2019-07-07 16:30:30 +02:00
"magic-string": "^0.25.3",
"mocha": "^6.2.0",
2019-09-04 03:10:59 +02:00
"puppeteer": "^1.19.0",
"rollup": "^1.21.4",
2019-09-04 03:10:59 +02:00
"rollup-plugin-commonjs": "^10.1.0",
2019-07-07 16:30:30 +02:00
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
2019-01-27 02:52:56 +01:00
"rollup-plugin-sucrase": "^2.1.0",
2019-07-07 16:30:30 +02:00
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-virtual": "^1.0.1",
2019-10-16 16:57:23 +02:00
"source-map": "^0.7.3",
2019-09-04 03:10:59 +02:00
"source-map-support": "^0.5.13",
2019-07-07 16:30:30 +02:00
"tiny-glob": "^0.2.6",
"tslib": "^1.10.0",
2019-09-04 03:46:41 +02:00
"typescript": "^3.5.3"
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
2019-08-17 17:32:35 +02:00
}
2016-11-16 01:33:17 +01:00
}