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.1 KiB

8 years ago
{
"name": "svelte",
8 years ago
"version": "1.6.2",
"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": "npm run build:main && npm run build:shared && npm run build:ssr",
"build:main": "rollup -c rollup/rollup.config.main.js",
"build:shared": "rollup -c rollup/rollup.config.shared.js",
"build:ssr": "rollup -c rollup/rollup.config.ssr.js",
"pretest": "npm run build",
8 years ago
"prepublish": "npm run lint && npm run build"
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",
"dependencies": {
"magic-string": "^0.19.0"
},
8 years ago
"devDependencies": {
"acorn": "^4.0.4",
8 years ago
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-register": "^6.18.0",
"codecov": "^1.0.1",
"console-group": "^0.3.2",
"eslint": "^3.12.2",
8 years ago
"eslint-plugin-import": "^2.2.0",
8 years ago
"estree-walker": "^0.3.0",
8 years ago
"fuzzyset.js": "0.0.1",
"jsdom": "^9.9.1",
8 years ago
"locate-character": "^2.0.0",
"mocha": "^3.2.0",
8 years ago
"node-resolve": "^1.3.3",
"nyc": "^10.0.0",
"reify": "^0.4.4",
"rollup": "^0.39.0",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^7.0.0",
8 years ago
"rollup-plugin-node-resolve": "^2.0.0",
"source-map": "^0.5.6",
"source-map-support": "^0.4.8"
8 years ago
},
8 years ago
"nyc": {
"include": [
"src/**/*.js"
8 years ago
],
"exclude": [
"src/**/__test__.js"
8 years ago
]
},
"babel": {
"plugins": [
"transform-es2015-modules-commonjs"
]
8 years ago
}
}