0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-11-24 16:29:46 +01:00
svelte/package.json

47 lines
1.1 KiB
JSON
Raw Normal View History

2016-11-16 01:33:17 +01:00
{
"name": "svelte",
2016-11-21 04:57:07 +01:00
"version": "0.1.0",
2016-11-17 15:17:00 +01:00
"description": "The magical disappearing UI framework",
2016-11-19 19:10:32 +01:00
"main": "dist/svelte.umd.js",
"module": "dist/svelte.es.js",
2016-11-16 01:33:17 +01:00
"scripts": {
2016-11-17 00:10:47 +01:00
"test": "mocha --opts mocha.opts --recursive ./**/__test__.js test/test.js",
2016-11-19 19:10:32 +01:00
"lint": "eslint compiler",
"build": "rollup -c",
"prebuild": "npm test",
"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-17 00:10:47 +01:00
"eslint": "^3.10.2",
"eslint-plugin-import": "^2.2.0",
"jsdom": "^9.8.3",
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",
"reify": "^0.4.0",
2016-11-21 05:07:14 +01:00
"rollup": "^0.36.3",
2016-11-19 19:10:32 +01:00
"rollup-plugin-node-resolve": "^2.0.0"
2016-11-16 01:33:17 +01:00
},
"dependencies": {
2016-11-17 06:20:38 +01:00
"acorn": "^4.0.3",
2016-11-19 02:49:46 +01:00
"estree-walker": "^0.3.0",
2016-11-19 02:02:28 +01:00
"locate-character": "^2.0.0",
"magic-string": "^0.16.0"
2016-11-16 01:33:17 +01:00
}
}