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

46 lines
1.1 KiB

8 years ago
{
"name": "svelte",
8 years ago
"version": "0.0.1",
"description": "The magical disappearing UI framework",
8 years ago
"main": "dist/svelte.umd.js",
"module": "dist/svelte.es.js",
8 years ago
"scripts": {
8 years ago
"test": "mocha --opts mocha.opts --recursive ./**/__test__.js test/test.js",
8 years ago
"lint": "eslint compiler",
"build": "rollup -c",
"prebuild": "npm test",
"prepublish": "npm run lint && npm run build"
8 years ago
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/Rich-Harris/svelte.git"
},
"keywords": [
"UI",
"framework",
"templates",
"templating"
],
"author": "Rich Harris",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/Rich-Harris/svelte/issues"
},
"homepage": "https://gitlab.com/Rich-Harris/svelte#README",
"devDependencies": {
8 years ago
"eslint": "^3.10.2",
"eslint-plugin-import": "^2.2.0",
"jsdom": "^9.8.3",
8 years ago
"mocha": "^3.1.2",
8 years ago
"node-resolve": "^1.3.3",
"reify": "^0.4.0",
"rollup-plugin-node-resolve": "^2.0.0"
8 years ago
},
"dependencies": {
8 years ago
"acorn": "^4.0.3",
"estree-walker": "^0.3.0",
"locate-character": "^2.0.0",
"magic-string": "^0.16.0"
8 years ago
}
}