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.
85 lines
2.2 KiB
85 lines
2.2 KiB
{
|
|
"name": "svelte",
|
|
"version": "1.10.2",
|
|
"description": "The magical disappearing UI framework",
|
|
"main": "compiler/svelte.js",
|
|
"files": [
|
|
"compiler",
|
|
"ssr",
|
|
"shared.js",
|
|
"README.md"
|
|
],
|
|
"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",
|
|
"prepublish": "npm run lint && npm run build"
|
|
},
|
|
"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",
|
|
"dependencies": {
|
|
"magic-string": "^0.19.0"
|
|
},
|
|
"devDependencies": {
|
|
"acorn": "^4.0.4",
|
|
"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",
|
|
"css-tree": "^1.0.0-alpha16",
|
|
"eslint": "^3.12.2",
|
|
"eslint-plugin-import": "^2.2.0",
|
|
"estree-walker": "^0.3.0",
|
|
"fuzzyset.js": "0.0.1",
|
|
"jsdom": "^9.9.1",
|
|
"locate-character": "^2.0.0",
|
|
"mocha": "^3.2.0",
|
|
"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",
|
|
"rollup-plugin-json": "^2.1.0",
|
|
"rollup-plugin-node-resolve": "^2.0.0",
|
|
"source-map": "^0.5.6",
|
|
"source-map-support": "^0.4.8"
|
|
},
|
|
"nyc": {
|
|
"include": [
|
|
"src/**/*.js"
|
|
],
|
|
"exclude": [
|
|
"src/**/__test__.js"
|
|
]
|
|
},
|
|
"babel": {
|
|
"plugins": [
|
|
"transform-es2015-modules-commonjs"
|
|
]
|
|
}
|
|
}
|