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.
76 lines
1.9 KiB
76 lines
1.9 KiB
{
|
|
"name": "svelte",
|
|
"version": "1.1.2",
|
|
"description": "The magical disappearing UI framework",
|
|
"main": "dist/svelte.js",
|
|
"files": [
|
|
"dist",
|
|
"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 compiler",
|
|
"build": "rollup -c",
|
|
"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",
|
|
"devDependencies": {
|
|
"acorn": "^4.0.3",
|
|
"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.10.2",
|
|
"eslint-plugin-import": "^2.2.0",
|
|
"estree-walker": "^0.3.0",
|
|
"fuzzyset.js": "0.0.1",
|
|
"jsdom": "^9.8.3",
|
|
"locate-character": "^2.0.0",
|
|
"magic-string": "^0.19.0",
|
|
"mocha": "^3.1.2",
|
|
"node-resolve": "^1.3.3",
|
|
"nyc": "^9.0.1",
|
|
"reify": "^0.4.0",
|
|
"rollup": "^0.36.3",
|
|
"rollup-plugin-buble": "^0.14.0",
|
|
"rollup-plugin-commonjs": "^5.0.5",
|
|
"rollup-plugin-node-resolve": "^2.0.0",
|
|
"source-map": "^0.5.6",
|
|
"source-map-support": "^0.4.6"
|
|
},
|
|
"nyc": {
|
|
"include": [
|
|
"compiler/**/*.js"
|
|
],
|
|
"exclude": [
|
|
"compiler/**/__test__.js"
|
|
]
|
|
},
|
|
"babel": {
|
|
"plugins": [
|
|
"transform-es2015-modules-commonjs"
|
|
]
|
|
}
|
|
}
|