mirror of https://github.com/sveltejs/svelte
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
2.7 KiB
102 lines
2.7 KiB
{
|
|
"name": "svelte",
|
|
"version": "3.11.0",
|
|
"description": "Cybernetically enhanced web apps",
|
|
"module": "index.mjs",
|
|
"main": "index",
|
|
"files": [
|
|
"types",
|
|
"compiler.*",
|
|
"register.js",
|
|
"index.*",
|
|
"internal",
|
|
"store",
|
|
"animate",
|
|
"transition",
|
|
"easing",
|
|
"motion",
|
|
"svelte",
|
|
"README.md"
|
|
],
|
|
"engines": {
|
|
"node": ">= 8"
|
|
},
|
|
"types": "types/runtime/index.d.ts",
|
|
"scripts": {
|
|
"test": "mocha --opts mocha.opts",
|
|
"test:unit": "mocha --require sucrase/register --recursive src/**/__test__.ts",
|
|
"quicktest": "mocha --opts mocha.opts",
|
|
"precoverage": "c8 mocha --opts mocha.coverage.opts",
|
|
"coverage": "c8 report --reporter=text-lcov > coverage.lcov && c8 report --reporter=html",
|
|
"codecov": "codecov",
|
|
"precodecov": "npm run coverage",
|
|
"build": "rollup -c && npm run tsd",
|
|
"prepare": "npm run build",
|
|
"dev": "rollup -cw",
|
|
"pretest": "npm run build",
|
|
"posttest": "agadoo internal/index.mjs",
|
|
"prepublishOnly": "npm run lint && PUBLISH=true npm test",
|
|
"tsd": "tsc -p src/compiler --emitDeclarationOnly && tsc -p src/runtime --emitDeclarationOnly",
|
|
"lint": "eslint \"{src,test}/**/*.{ts,js}\""
|
|
},
|
|
"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": "^5.2.7",
|
|
"@types/node": "^8.10.53",
|
|
"@typescript-eslint/eslint-plugin": "^1.13.0",
|
|
"@typescript-eslint/parser": "^2.1.0",
|
|
"acorn": "^7.0.0",
|
|
"agadoo": "^1.0.1",
|
|
"c8": "^5.0.1",
|
|
"codecov": "^3.5.0",
|
|
"css-tree": "1.0.0-alpha22",
|
|
"eslint": "^6.3.0",
|
|
"eslint-plugin-import": "^2.18.2",
|
|
"eslint-plugin-svelte3": "^2.7.3",
|
|
"estree-walker": "^0.6.1",
|
|
"is-reference": "^1.1.3",
|
|
"jsdom": "^15.1.1",
|
|
"kleur": "^3.0.3",
|
|
"locate-character": "^2.0.5",
|
|
"magic-string": "^0.25.3",
|
|
"mocha": "^6.2.0",
|
|
"puppeteer": "^1.19.0",
|
|
"rollup": "^1.20.3",
|
|
"rollup-plugin-commonjs": "^10.1.0",
|
|
"rollup-plugin-json": "^4.0.0",
|
|
"rollup-plugin-node-resolve": "^5.2.0",
|
|
"rollup-plugin-replace": "^2.2.0",
|
|
"rollup-plugin-sucrase": "^2.1.0",
|
|
"rollup-plugin-typescript": "^1.0.1",
|
|
"rollup-plugin-virtual": "^1.0.1",
|
|
"source-map": "^0.6.1",
|
|
"source-map-support": "^0.5.13",
|
|
"tiny-glob": "^0.2.6",
|
|
"tslib": "^1.10.0",
|
|
"typescript": "^3.5.3"
|
|
},
|
|
"nyc": {
|
|
"include": [
|
|
"compiler/svelte.js",
|
|
"shared.js"
|
|
],
|
|
"sourceMap": true,
|
|
"instrument": true
|
|
}
|
|
}
|