mirror of https://github.com/sveltejs/svelte
parent
70dad6af54
commit
6e94f5bd2e
@ -1,112 +1,111 @@
|
|||||||
{
|
{
|
||||||
"name": "svelte",
|
"name": "svelte",
|
||||||
"version": "3.22.3",
|
"version": "3.22.3",
|
||||||
"description": "Cybernetically enhanced web apps",
|
"description": "Cybernetically enhanced web apps",
|
||||||
"module": "index.mjs",
|
"module": "index.mjs",
|
||||||
"main": "index",
|
"main": "index",
|
||||||
"files": [
|
"files": [
|
||||||
"types",
|
"types",
|
||||||
"compiler.*",
|
"compiler.*",
|
||||||
"register.js",
|
"register.js",
|
||||||
"index.*",
|
"index.*",
|
||||||
"internal",
|
"internal",
|
||||||
"store",
|
"store",
|
||||||
"animate",
|
"animate",
|
||||||
"transition",
|
"transition",
|
||||||
"easing",
|
"easing",
|
||||||
"motion",
|
"motion",
|
||||||
"svelte",
|
"svelte",
|
||||||
"README.md"
|
"README.md"
|
||||||
],
|
],
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 8"
|
"node": ">= 8"
|
||||||
},
|
},
|
||||||
"types": "types/runtime/index.d.ts",
|
"types": "types/runtime/index.d.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "mocha",
|
"test": "mocha",
|
||||||
"test:unit": "mocha -r sucrase/register --recursive src/**/__test__.ts",
|
"test:unit": "mocha -r sucrase/register --recursive src/**/__test__.ts",
|
||||||
"quicktest": "mocha",
|
"quicktest": "mocha",
|
||||||
"update-expected": "node -r sucrase/register ./test/js/update.ts && node -r sucrase/register ./test/parser/update.ts",
|
"update-expected": "node -r sucrase/register ./test/js/update.ts && node -r sucrase/register ./test/parser/update.ts",
|
||||||
"precoverage": "c8 mocha --opts mocha.coverage.opts",
|
"precoverage": "c8 mocha --opts mocha.coverage.opts",
|
||||||
"coverage": "c8 report --reporter=text-lcov > coverage.lcov && c8 report --reporter=html",
|
"coverage": "c8 report --reporter=text-lcov > coverage.lcov && c8 report --reporter=html",
|
||||||
"codecov": "codecov",
|
"codecov": "codecov",
|
||||||
"precodecov": "npm run coverage",
|
"precodecov": "npm run coverage",
|
||||||
"build": "rollup -c && npm run tsd",
|
"build": "rollup -c && npm run tsd",
|
||||||
"prepare": "npm run build",
|
"prepare": "npm run build",
|
||||||
"dev": "rollup -cw",
|
"dev": "rollup -cw",
|
||||||
"pretest": "npm run build",
|
"pretest": "npm run build",
|
||||||
"posttest": "agadoo internal/index.mjs",
|
"posttest": "agadoo internal/index.mjs",
|
||||||
"prepublishOnly": "npm run lint && PUBLISH=true npm test",
|
"prepublishOnly": "npm run lint && PUBLISH=true npm test",
|
||||||
"tsd": "tsc -p src/compiler --emitDeclarationOnly && tsc -p src/runtime --emitDeclarationOnly",
|
"tsd": "tsc -p src/compiler --emitDeclarationOnly && tsc -p src/runtime --emitDeclarationOnly",
|
||||||
"lint": "eslint \"{src,test}/**/*.{ts,js}\""
|
"lint": "eslint \"{src,test}/**/*.{ts,js}\""
|
||||||
},
|
},
|
||||||
"mocha": {
|
"mocha": {
|
||||||
"file": "./test/test.ts",
|
"file": "./test/test.ts",
|
||||||
"require": "sucrase/register",
|
"require": "sucrase/register",
|
||||||
"bail": true,
|
"bail": true,
|
||||||
"timeout": "10000"
|
"timeout": "10000"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/sveltejs/svelte.git"
|
"url": "https://github.com/sveltejs/svelte.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"UI",
|
"UI",
|
||||||
"framework",
|
"framework",
|
||||||
"templates",
|
"templates",
|
||||||
"templating"
|
"templating"
|
||||||
],
|
],
|
||||||
"author": "Rich Harris",
|
"author": "Rich Harris",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/sveltejs/svelte/issues"
|
"url": "https://github.com/sveltejs/svelte/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/sveltejs/svelte#README",
|
"homepage": "https://github.com/sveltejs/svelte#README",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@rollup/plugin-commonjs": "^11.1.0",
|
"@rollup/plugin-commonjs": "^11.1.0",
|
||||||
"@rollup/plugin-json": "^4.0.3",
|
"@rollup/plugin-json": "^4.0.3",
|
||||||
"@rollup/plugin-node-resolve": "^7.1.3",
|
"@rollup/plugin-node-resolve": "^7.1.3",
|
||||||
"@rollup/plugin-replace": "^2.3.2",
|
"@rollup/plugin-replace": "^2.3.2",
|
||||||
"@rollup/plugin-sucrase": "^3.0.1",
|
"@rollup/plugin-sucrase": "^3.0.1",
|
||||||
"@rollup/plugin-typescript": "^4.1.1",
|
"@rollup/plugin-typescript": "^4.1.1",
|
||||||
"@rollup/plugin-virtual": "^2.0.2",
|
"@rollup/plugin-virtual": "^2.0.2",
|
||||||
"@types/jsdom": "^16.2.2",
|
"@types/jsdom": "^16.2.2",
|
||||||
"@types/mocha": "^7.0.2",
|
"@types/mocha": "^7.0.2",
|
||||||
"@types/node": "^14.0.1",
|
"@types/node": "^14.0.1",
|
||||||
"@types/puppeteer": "^2.1.0",
|
"@types/puppeteer": "^2.1.0",
|
||||||
"@typescript-eslint/eslint-plugin": "^1.13.0",
|
"@typescript-eslint/eslint-plugin": "^1.13.0",
|
||||||
"@typescript-eslint/parser": "^2.1.0",
|
"@typescript-eslint/parser": "^2.1.0",
|
||||||
"acorn": "^7.2.0",
|
"acorn": "^7.2.0",
|
||||||
"agadoo": "^2.0.0",
|
"agadoo": "^2.0.0",
|
||||||
"c8": "^7.1.2",
|
"c8": "^7.1.2",
|
||||||
"code-red": "0.1.1",
|
"code-red": "0.1.1",
|
||||||
"codecov": "^3.6.5",
|
"codecov": "^3.6.5",
|
||||||
"css-tree": "1.0.0-alpha22",
|
"css-tree": "1.0.0-alpha22",
|
||||||
"eslint": "^6.3.0",
|
"eslint": "^6.3.0",
|
||||||
"eslint-plugin-import": "^2.18.2",
|
"eslint-plugin-import": "^2.18.2",
|
||||||
"eslint-plugin-svelte3": "^2.7.3",
|
"eslint-plugin-svelte3": "^2.7.3",
|
||||||
"estree-walker": "^2.0.1",
|
"estree-walker": "^2.0.1",
|
||||||
"is-reference": "^1.1.4",
|
"is-reference": "^1.1.4",
|
||||||
"jsdom": "^16.2.2",
|
"jsdom": "^16.2.2",
|
||||||
"kleur": "^3.0.3",
|
"kleur": "^3.0.3",
|
||||||
"locate-character": "^2.0.5",
|
"locate-character": "^2.0.5",
|
||||||
"magic-string": "^0.25.3",
|
"magic-string": "^0.25.3",
|
||||||
"mocha": "^7.1.2",
|
"mocha": "^7.1.2",
|
||||||
"periscopic": "^2.0.1",
|
"periscopic": "^2.0.1",
|
||||||
"puppeteer": "^3.1.0",
|
"puppeteer": "^3.1.0",
|
||||||
"rollup": "^2.10.5",
|
"rollup": "^2.10.5",
|
||||||
"source-map-support": "^0.5.19",
|
"source-map-support": "^0.5.19",
|
||||||
"source-map": "^0.7.3",
|
"source-map": "^0.7.3",
|
||||||
"tslib": "^2.0.0",
|
"tslib": "^2.0.0",
|
||||||
"typescript": "^3.9.2"
|
"typescript": "^3.9.2"
|
||||||
},
|
},
|
||||||
"nyc": {
|
"nyc": {
|
||||||
"include": [
|
"include": [
|
||||||
"compiler/svelte.js",
|
"compiler/svelte.js",
|
||||||
"shared.js"
|
"shared.js"
|
||||||
],
|
],
|
||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
"instrument": true
|
"instrument": true
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in new issue