0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-11-28 07:52:41 +01:00
svelte/package.json

73 lines
1.8 KiB
JSON
Raw Normal View History

2016-11-16 01:33:17 +01:00
{
"name": "svelte",
2016-11-26 19:01:10 +01:00
"version": "0.3.0",
2016-11-17 15:17:00 +01:00
"description": "The magical disappearing UI framework",
2016-11-25 21:52:28 +01:00
"main": "dist/svelte.js",
2016-11-22 22:14:29 +01:00
"files": [
"dist",
"README.md"
],
2016-11-16 01:33:17 +01:00
"scripts": {
2016-11-22 17:55:06 +01:00
"test": "mocha --opts mocha.opts",
"precoverage": "mocha --opts mocha.coverage.opts",
2016-11-27 14:18:11 +01:00
"coverage": "mkdir -p .nyc_output && nyc report --reporter=text-lcov > coverage.lcov && codecov",
2016-11-19 19:10:32 +01:00
"lint": "eslint compiler",
"build": "rollup -c",
"pretest": "npm run build",
2016-11-19 19:10:32 +01:00
"prepublish": "npm run lint && npm run build"
2016-11-16 01:33:17 +01:00
},
"repository": {
"type": "git",
2016-11-20 19:14:34 +01:00
"url": "https://github.com/sveltejs/svelte.git"
2016-11-16 01:33:17 +01:00
},
"keywords": [
"UI",
"framework",
"templates",
"templating"
],
"author": "Rich Harris",
"license": "MIT",
"bugs": {
2016-11-20 19:14:34 +01:00
"url": "https://github.com/sveltejs/svelte/issues"
2016-11-16 01:33:17 +01:00
},
2016-11-20 19:14:34 +01:00
"homepage": "https://github.com/sveltejs/svelte#README",
2016-11-16 01:33:17 +01:00
"devDependencies": {
2016-11-25 21:52:28 +01:00
"acorn": "^4.0.3",
2016-11-21 13:07:42 +01:00
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-register": "^6.18.0",
"codecov": "^1.0.1",
2016-11-22 17:55:06 +01:00
"console-group": "^0.3.2",
2016-11-17 00:10:47 +01:00
"eslint": "^3.10.2",
"eslint-plugin-import": "^2.2.0",
2016-11-25 21:52:28 +01:00
"estree-walker": "^0.3.0",
2016-11-26 16:52:25 +01:00
"fuzzyset.js": "0.0.1",
2016-11-17 00:10:47 +01:00
"jsdom": "^9.8.3",
2016-11-25 21:52:28 +01:00
"locate-character": "^2.0.0",
"magic-string": "^0.16.0",
2016-11-16 01:33:17 +01:00
"mocha": "^3.1.2",
2016-11-19 19:10:32 +01:00
"node-resolve": "^1.3.3",
2016-11-21 13:07:42 +01:00
"nyc": "^9.0.1",
2016-11-19 19:10:32 +01:00
"reify": "^0.4.0",
2016-11-21 05:07:14 +01:00
"rollup": "^0.36.3",
2016-11-25 23:26:45 +01:00
"rollup-plugin-buble": "^0.14.0",
2016-11-26 16:52:25 +01:00
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-node-resolve": "^2.0.0",
"source-map-support": "^0.4.6"
2016-11-16 01:33:17 +01:00
},
2016-11-21 13:07:42 +01:00
"nyc": {
"include": [
"compiler/**/*.js"
],
"exclude": [
"compiler/**/__test__.js"
]
},
"babel": {
"plugins": [
"transform-es2015-modules-commonjs"
]
2016-11-16 01:33:17 +01:00
}
}