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

70 lines
1.7 KiB

8 years ago
{
"name": "svelte",
8 years ago
"version": "0.2.2",
"description": "The magical disappearing UI framework",
8 years ago
"main": "dist/svelte.js",
"files": [
"dist",
"README.md"
],
8 years ago
"scripts": {
"test": "mocha --opts mocha.opts",
"precoverage": "mocha --opts mocha.coverage.opts",
8 years ago
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
8 years ago
"lint": "eslint compiler",
"build": "rollup -c",
"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",
8 years ago
"devDependencies": {
8 years ago
"acorn": "^4.0.3",
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",
8 years ago
"eslint": "^3.10.2",
"eslint-plugin-import": "^2.2.0",
8 years ago
"estree-walker": "^0.3.0",
8 years ago
"jsdom": "^9.8.3",
8 years ago
"locate-character": "^2.0.0",
"magic-string": "^0.16.0",
8 years ago
"mocha": "^3.1.2",
8 years ago
"node-resolve": "^1.3.3",
8 years ago
"nyc": "^9.0.1",
8 years ago
"reify": "^0.4.0",
"rollup": "^0.36.3",
8 years ago
"rollup-plugin-buble": "^0.14.0",
8 years ago
"rollup-plugin-node-resolve": "^2.0.0"
8 years ago
},
8 years ago
"nyc": {
"include": [
"compiler/**/*.js"
],
"exclude": [
"compiler/**/__test__.js"
]
},
"babel": {
"plugins": [
"transform-es2015-modules-commonjs"
]
8 years ago
}
}