2016-11-16 01:33:17 +01:00
|
|
|
{
|
|
|
|
"name": "svelte",
|
2017-01-04 00:09:07 +01:00
|
|
|
"version": "1.6.2",
|
2016-11-17 15:17:00 +01:00
|
|
|
"description": "The magical disappearing UI framework",
|
2016-12-07 17:43:43 +01:00
|
|
|
"main": "compiler/svelte.js",
|
2016-11-22 22:14:29 +01:00
|
|
|
"files": [
|
2016-12-07 17:43:43 +01:00
|
|
|
"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",
|
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",
|
2016-12-08 11:48:54 +01:00
|
|
|
"lint": "eslint src test/*.js",
|
2016-12-20 17:02:13 +01:00
|
|
|
"build": "npm run build:main && npm run build:shared && npm run build:ssr",
|
|
|
|
"build:main": "rollup -c rollup/rollup.config.main.js",
|
|
|
|
"build:shared": "rollup -c rollup/rollup.config.shared.js",
|
|
|
|
"build:ssr": "rollup -c rollup/rollup.config.ssr.js",
|
2016-11-23 05:00:28 +01:00
|
|
|
"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-12-07 17:43:43 +01:00
|
|
|
"dependencies": {
|
|
|
|
"magic-string": "^0.19.0"
|
|
|
|
},
|
2016-11-16 01:33:17 +01:00
|
|
|
"devDependencies": {
|
2016-12-30 13:51:20 +01:00
|
|
|
"acorn": "^4.0.4",
|
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-12-30 13:51:20 +01:00
|
|
|
"eslint": "^3.12.2",
|
2016-11-17 00:10:47 +01:00
|
|
|
"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-12-30 13:51:20 +01:00
|
|
|
"jsdom": "^9.9.1",
|
2016-11-25 21:52:28 +01:00
|
|
|
"locate-character": "^2.0.0",
|
2016-12-30 13:51:20 +01:00
|
|
|
"mocha": "^3.2.0",
|
2016-11-19 19:10:32 +01:00
|
|
|
"node-resolve": "^1.3.3",
|
2016-12-30 13:51:20 +01:00
|
|
|
"nyc": "^10.0.0",
|
|
|
|
"reify": "^0.4.4",
|
|
|
|
"rollup": "^0.39.0",
|
|
|
|
"rollup-plugin-buble": "^0.15.0",
|
|
|
|
"rollup-plugin-commonjs": "^7.0.0",
|
2016-11-26 16:52:25 +01:00
|
|
|
"rollup-plugin-node-resolve": "^2.0.0",
|
2016-12-01 17:50:10 +01:00
|
|
|
"source-map": "^0.5.6",
|
2016-12-30 13:51:20 +01:00
|
|
|
"source-map-support": "^0.4.8"
|
2016-11-16 01:33:17 +01:00
|
|
|
},
|
2016-11-21 13:07:42 +01:00
|
|
|
"nyc": {
|
|
|
|
"include": [
|
2016-12-08 11:48:54 +01:00
|
|
|
"src/**/*.js"
|
2016-11-21 13:07:42 +01:00
|
|
|
],
|
|
|
|
"exclude": [
|
2016-12-08 11:48:54 +01:00
|
|
|
"src/**/__test__.js"
|
2016-11-21 13:07:42 +01:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"babel": {
|
|
|
|
"plugins": [
|
|
|
|
"transform-es2015-modules-commonjs"
|
|
|
|
]
|
2016-11-16 01:33:17 +01:00
|
|
|
}
|
|
|
|
}
|