UNPKG

2.86 kBJSONView Raw
1{
2 "name": "svelte",
3 "version": "3.6.6",
4 "description": "Cybernetically enhanced web apps",
5 "module": "index.mjs",
6 "main": "index",
7 "files": [
8 "types",
9 "compiler.*",
10 "register.js",
11 "index.*",
12 "internal",
13 "store",
14 "animate",
15 "transition",
16 "easing",
17 "motion",
18 "svelte",
19 "README.md"
20 ],
21 "engines": {
22 "node": ">= 8"
23 },
24 "types": "types/runtime/index.d.ts",
25 "scripts": {
26 "test": "mocha --opts mocha.opts",
27 "test:unit": "mocha --require sucrase/register --recursive src/**/__test__.ts",
28 "quicktest": "mocha --opts mocha.opts",
29 "precoverage": "c8 mocha --opts mocha.coverage.opts",
30 "coverage": "c8 report --reporter=text-lcov > coverage.lcov && c8 report --reporter=html",
31 "codecov": "codecov",
32 "precodecov": "npm run coverage",
33 "build": "rollup -c && npm run tsd",
34 "prepare": "npm run build",
35 "dev": "rollup -cw",
36 "pretest": "npm run build",
37 "posttest": "agadoo internal/index.mjs",
38 "prepublishOnly": "npm run lint && PUBLISH=true npm test",
39 "tsd": "tsc -p src/compiler --emitDeclarationOnly && tsc -p src/runtime --emitDeclarationOnly",
40 "lint": "eslint \"{src,test}/**/*.{ts,js}\""
41 },
42 "repository": {
43 "type": "git",
44 "url": "https://github.com/sveltejs/svelte.git"
45 },
46 "keywords": [
47 "UI",
48 "framework",
49 "templates",
50 "templating"
51 ],
52 "author": "Rich Harris",
53 "license": "MIT",
54 "bugs": {
55 "url": "https://github.com/sveltejs/svelte/issues"
56 },
57 "homepage": "https://github.com/sveltejs/svelte#README",
58 "devDependencies": {
59 "@types/mocha": "^5.2.7",
60 "@types/node": "=12",
61 "@typescript-eslint/eslint-plugin": "^1.11.0",
62 "@typescript-eslint/parser": "^1.11.0",
63 "acorn": "^6.2.0",
64 "acorn-dynamic-import": "^4.0.0",
65 "agadoo": "^1.0.1",
66 "c8": "^5.0.1",
67 "codecov": "^3.5.0",
68 "css-tree": "1.0.0-alpha22",
69 "eslint": "^6.0.1",
70 "eslint-plugin-import": "^2.18.0",
71 "eslint-plugin-svelte3": "^2.6.0",
72 "estree-walker": "^0.6.1",
73 "is-reference": "^1.1.3",
74 "jsdom": "^15.1.1",
75 "kleur": "^3.0.3",
76 "locate-character": "^2.0.5",
77 "magic-string": "^0.25.3",
78 "mocha": "^6.1.4",
79 "puppeteer": "^1.18.1",
80 "rollup": "^1.16.6",
81 "rollup-plugin-commonjs": "^10.0.1",
82 "rollup-plugin-json": "^4.0.0",
83 "rollup-plugin-node-resolve": "^5.2.0",
84 "rollup-plugin-replace": "^2.2.0",
85 "rollup-plugin-sucrase": "^2.1.0",
86 "rollup-plugin-typescript": "^1.0.1",
87 "rollup-plugin-virtual": "^1.0.1",
88 "source-map": "^0.6.1",
89 "source-map-support": "^0.5.12",
90 "tiny-glob": "^0.2.6",
91 "ts-node": "^8.3.0",
92 "tslib": "^1.10.0",
93 "typescript": "^3.5.2"
94 },
95 "nyc": {
96 "include": [
97 "compiler/svelte.js",
98 "shared.js"
99 ],
100 "sourceMap": true,
101 "instrument": true
102 },
103 "dependencies": {}
104}