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",
|
2018-12-22 06:42:44 +01:00
|
|
|
"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",
|
2019-05-28 02:05:31 +02:00
|
|
|
"compiler.*",
|
2018-12-16 01:18:03 +01:00
|
|
|
"register.js",
|
2018-12-22 06:42:44 +01:00
|
|
|
"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": {
|
2019-06-07 23:45:40 +02:00
|
|
|
"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",
|
2019-06-16 19:59:24 +02:00
|
|
|
"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",
|
2019-06-25 00:10:10 +02:00
|
|
|
"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",
|
2016-11-23 05:00:28 +01:00
|
|
|
"pretest": "npm run build",
|
2019-05-27 21:36:02 +02:00
|
|
|
"posttest": "agadoo internal/index.mjs",
|
2019-06-25 00:10:10 +02:00
|
|
|
"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",
|
2019-06-09 17:31:28 +02:00
|
|
|
"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",
|
2019-09-16 14:55:36 +02:00
|
|
|
"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",
|
2017-09-08 04:07:16 +02:00
|
|
|
"css-tree": "1.0.0-alpha22",
|
2019-09-04 03:10:59 +02:00
|
|
|
"eslint": "^6.3.0",
|
2019-08-03 19:07:30 +02:00
|
|
|
"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",
|
2018-04-17 03:50:57 +02:00
|
|
|
"locate-character": "^2.0.5",
|
2019-07-07 16:30:30 +02:00
|
|
|
"magic-string": "^0.25.3",
|
2019-08-03 19:07:30 +02:00
|
|
|
"mocha": "^6.2.0",
|
2019-09-04 03:10:59 +02:00
|
|
|
"puppeteer": "^1.19.0",
|
2019-09-16 14:55:36 +02:00
|
|
|
"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",
|
2017-09-10 16:40:23 +02:00
|
|
|
"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
|
|
|
}
|