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

83 lines
2.2 KiB

8 years ago
{
"name": "svelte",
7 years ago
"version": "1.35.0",
"description": "The magical disappearing UI framework",
"main": "compiler/svelte.js",
"files": [
"compiler",
"ssr",
"shared.js",
"README.md"
],
8 years ago
"scripts": {
"test": "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": "node src/shared/_build.js && rollup -c",
"dev": "node src/shared/_build.js && rollup -c -w",
"pretest": "npm run build",
"prepublishOnly": "npm run lint && npm test",
"prettier": "prettier --use-tabs --single-quote --trailing-comma es5 --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": {
"@types/mocha": "^2.2.41",
7 years ago
"@types/node": "^8.0.17",
"acorn": "^5.1.1",
"chalk": "^2.0.1",
"codecov": "^2.2.0",
"console-group": "^0.3.2",
"css-tree": "1.0.0-alpha16",
7 years ago
"eslint": "^4.3.0",
"eslint-plugin-html": "^3.0.0",
8 years ago
"eslint-plugin-import": "^2.2.0",
"estree-walker": "^0.5.0",
"glob": "^7.1.1",
7 years ago
"jsdom": "^11.1.0",
8 years ago
"locate-character": "^2.0.0",
"magic-string": "^0.22.3",
"mocha": "^3.2.0",
8 years ago
"node-resolve": "^1.3.3",
7 years ago
"nyc": "^11.1.0",
7 years ago
"prettier": "^1.4.1",
"rollup": "^0.48.2",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-json": "^2.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-typescript": "^0.8.1",
"rollup-watch": "^4.3.1",
"source-map": "^0.5.6",
"source-map-support": "^0.4.8",
"typescript": "^2.3.2"
8 years ago
},
8 years ago
"nyc": {
"include": [
"src/**/*.js",
"shared.js"
8 years ago
],
"exclude": [
"src/**/__test__.js",
"src/shared/**"
8 years ago
]
8 years ago
}
}