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

103 lines
2.6 KiB

8 years ago
{
"name": "svelte",
"version": "3.0.0-alpha13",
"description": "The magical disappearing UI framework",
"module": "index.mjs",
"main": "index.js",
"bin": {
"svelte": "svelte"
},
"files": [
"cli",
"compiler.js",
"register.js",
"index.*",
"internal.*",
"store.*",
"transition.*",
"easing.*",
"svelte",
"README.md"
],
8 years ago
"scripts": {
"test": "mocha --opts mocha.opts",
"quicktest": "mocha --opts mocha.opts",
"precoverage": "export COVERAGE=true && nyc mocha --opts mocha.coverage.opts",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"codecov": "codecov",
"precodecov": "npm run coverage",
"lint": "eslint src test/*.js",
"build": "rollup -c",
"prepare": "npm run build",
"dev": "rollup -c -w",
"pretest": "npm run build",
"posttest": "agadoo src/internal/index.js",
"prepublishOnly": "npm run lint && npm test",
"prettier": "prettier --write \"src/**/*.ts\""
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": {
6 years ago
"@types/mocha": "^5.2.0",
"@types/node": "^10.5.5",
"acorn": "^5.4.1",
6 years ago
"acorn-dynamic-import": "^3.0.0",
6 years ago
"agadoo": "^1.0.1",
6 years ago
"codecov": "^3.0.0",
"css-tree": "1.0.0-alpha22",
6 years ago
"eslint": "^5.3.0",
6 years ago
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.11.0",
"estree-walker": "^0.6.0",
"is-reference": "^1.1.0",
6 years ago
"jsdom": "^11.8.0",
"kleur": "^3.0.0",
"locate-character": "^2.0.5",
"magic-string": "^0.25.0",
6 years ago
"mocha": "^5.2.0",
6 years ago
"nightmare": "^3.0.1",
8 years ago
"node-resolve": "^1.3.3",
"nyc": "^12.0.2",
6 years ago
"prettier": "^1.12.1",
"rollup": "^0.63.5",
6 years ago
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-json": "^3.0.0",
6 years ago
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-typescript": "^0.8.1",
"rollup-plugin-virtual": "^1.0.1",
"rollup-watch": "^4.3.1",
"sade": "^1.4.0",
"sander": "^0.6.0",
"shelljs": "^0.8.2",
6 years ago
"source-map": "0.6",
"source-map-support": "^0.5.4",
"tiny-glob": "^0.2.1",
"ts-node": "^7.0.0",
"tslib": "^1.8.0",
"typescript": "^3.0.1"
8 years ago
},
8 years ago
"nyc": {
"include": [
"compiler/svelte.js",
"shared.js"
8 years ago
],
"sourceMap": true,
"instrument": true
8 years ago
}
}