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.
svelte/package.json

97 lines
2.5 KiB

8 years ago
{
"name": "svelte",
5 years ago
"version": "3.4.3",
"description": "Cybernetically enhanced web apps",
"module": "index.mjs",
"main": "index",
"files": [
"dist",
"compiler.js",
"register.js",
"index.*",
"internal.*",
"store.*",
"animate.*",
"transition.*",
"easing.*",
"motion.*",
"svelte",
"README.md"
],
8 years ago
"scripts": {
"test": "mocha --opts mocha.opts",
"test:unit": "mocha --require sucrase/register --recursive ./**/__test__.ts",
"quicktest": "mocha --opts mocha.opts",
6 years ago
"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",
"prepare": "npm run build && npm run tsd",
6 years ago
"dev": "rollup -cw",
"pretest": "npm run build",
"posttest": "agadoo internal.mjs",
"prepublishOnly": "export PUBLISH=true && npm test",
"tsd": "tsc -p . --emitDeclarationOnly",
"typecheck": "tsc -p . --noEmit"
8 years ago
},
"repository": {
"type": "git",
8 years ago
"url": "https://github.com/sveltejs/svelte.git"
8 years ago
},
"keywords": [
"UI",
"framework",
"templates",
"templating"
],
"author": "Rich Harris",
"license": "MIT",
"bugs": {
8 years ago
"url": "https://github.com/sveltejs/svelte/issues"
8 years ago
},
8 years ago
"homepage": "https://github.com/sveltejs/svelte#README",
8 years ago
"devDependencies": {
"@sveltejs/svelte-repl": "0.0.5",
6 years ago
"@types/mocha": "^5.2.0",
"@types/node": "^10.5.5",
5 years ago
"acorn": "^6.1.1",
"acorn-dynamic-import": "^4.0.0",
6 years ago
"agadoo": "^1.0.1",
6 years ago
"c8": "^3.4.0",
6 years ago
"codecov": "^3.0.0",
"css-tree": "1.0.0-alpha22",
"estree-walker": "^0.6.0",
"is-reference": "^1.1.1",
6 years ago
"jsdom": "^12.2.0",
"kleur": "^3.0.0",
"locate-character": "^2.0.5",
"magic-string": "^0.25.2",
6 years ago
"mocha": "^5.2.0",
"puppeteer": "^1.13.0",
6 years ago
"rollup": "^1.1.2",
6 years ago
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-json": "^3.0.0",
6 years ago
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-sucrase": "^2.1.0",
6 years ago
"rollup-plugin-typescript": "^1.0.0",
"rollup-plugin-virtual": "^1.0.1",
6 years ago
"source-map": "0.6",
"source-map-support": "^0.5.4",
"tiny-glob": "^0.2.1",
6 years ago
"ts-node": "^8.0.2",
"tslib": "^1.8.0",
"typescript": "^3.4.0"
8 years ago
},
8 years ago
"nyc": {
"include": [
"compiler/svelte.js",
"shared.js"
8 years ago
],
"sourceMap": true,
"instrument": true
},
"dependencies": {}
8 years ago
}