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

88 lines
2.3 KiB
JSON
Raw Normal View History

2016-11-16 01:33:17 +01:00
{
"name": "svelte",
2017-11-21 17:12:24 +01:00
"version": "1.42.0",
2016-11-17 15:17:00 +01:00
"description": "The magical disappearing UI framework",
"main": "compiler/svelte.js",
2016-11-22 22:14:29 +01:00
"files": [
"compiler",
"ssr",
2016-12-21 01:19:58 +01:00
"shared.js",
2016-11-22 22:14:29 +01:00
"README.md"
],
2016-11-16 01:33:17 +01:00
"scripts": {
2016-11-22 17:55:06 +01:00
"test": "mocha --opts mocha.opts",
2017-09-02 22:29:02 +02:00
"quicktest": "mocha --opts mocha.opts",
2016-11-27 14:49:25 +01:00
"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 src test/*.js",
2017-06-25 00:58:21 +02:00
"build": "node src/shared/_build.js && rollup -c",
"prepare": "npm run build",
2017-06-25 00:58:21 +02:00
"dev": "node src/shared/_build.js && rollup -c -w",
"pretest": "npm run build",
2017-08-14 20:50:20 +02:00
"prepublishOnly": "npm run lint && npm test",
2017-09-23 20:17:33 +02:00
"prettier": "prettier --write \"src/**/*.ts\""
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": {
2017-05-26 12:24:56 +02:00
"@types/mocha": "^2.2.41",
2017-07-30 04:11:19 +02:00
"@types/node": "^8.0.17",
"acorn": "^5.1.1",
"chalk": "^2.0.1",
"codecov": "^2.2.0",
2016-11-22 17:55:06 +01:00
"console-group": "^0.3.2",
"css-tree": "1.0.0-alpha22",
2017-07-30 04:11:19 +02:00
"eslint": "^4.3.0",
"eslint-plugin-html": "^3.0.0",
2016-11-17 00:10:47 +01:00
"eslint-plugin-import": "^2.2.0",
"estree-walker": "^0.5.0",
"glob": "^7.1.1",
2017-07-30 04:26:22 +02:00
"jsdom": "^11.1.0",
2016-11-25 21:52:28 +01:00
"locate-character": "^2.0.0",
2017-07-22 02:37:45 +02:00
"magic-string": "^0.22.3",
2016-12-30 13:51:20 +01:00
"mocha": "^3.2.0",
"nightmare": "^2.10.0",
2016-11-19 19:10:32 +01:00
"node-resolve": "^1.3.3",
2017-07-30 04:11:19 +02:00
"nyc": "^11.1.0",
2017-09-23 20:17:33 +02:00
"prettier": "^1.7.0",
2017-08-20 17:56:21 +02:00
"rollup": "^0.48.2",
2016-12-30 13:51:20 +01:00
"rollup-plugin-buble": "^0.15.0",
2017-07-30 04:03:05 +02:00
"rollup-plugin-commonjs": "^8.0.2",
2017-01-04 17:26:26 +01:00
"rollup-plugin-json": "^2.1.0",
2017-07-30 04:03:05 +02:00
"rollup-plugin-node-resolve": "^3.0.0",
2017-05-07 01:43:33 +02:00
"rollup-plugin-typescript": "^0.8.1",
"rollup-plugin-virtual": "^1.0.1",
2017-07-30 04:03:05 +02:00
"rollup-watch": "^4.3.1",
2016-12-01 17:50:10 +01:00
"source-map": "^0.5.6",
2017-05-07 01:43:33 +02:00
"source-map-support": "^0.4.8",
2017-11-12 21:20:13 +01:00
"tslib": "^1.8.0",
2017-05-07 01:43:33 +02:00
"typescript": "^2.3.2"
2016-11-16 01:33:17 +01:00
},
2016-11-21 13:07:42 +01:00
"nyc": {
"include": [
2017-05-04 18:25:20 +02:00
"src/**/*.js",
"shared.js"
2016-11-21 13:07:42 +01:00
],
"exclude": [
"src/**/__test__.js",
"src/shared/**"
2016-11-21 13:07:42 +01:00
]
2016-11-16 01:33:17 +01:00
}
}