UNPKG

2.9 kBJSONView Raw
1{
2 "name": "svelte",
3 "version": "3.5.1",
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",
25 "scripts": {
26 "test": "mocha --opts mocha.opts",
27 "test:unit": "mocha --require sucrase/register --recursive ./**/__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": "export PUBLISH=true && npm test && npm run create-stubs",
39 "create-stubs": "node scripts/create-stubs.js",
40 "tsd": "tsc -p . --emitDeclarationOnly",
41 "typecheck": "tsc -p . --noEmit",
42 "lint": "eslint \"{src,test}/**/*.{ts,js}\""
43 },
44 "repository": {
45 "type": "git",
46 "url": "https://github.com/sveltejs/svelte.git"
47 },
48 "keywords": [
49 "UI",
50 "framework",
51 "templates",
52 "templating"
53 ],
54 "author": "Rich Harris",
55 "license": "MIT",
56 "bugs": {
57 "url": "https://github.com/sveltejs/svelte/issues"
58 },
59 "homepage": "https://github.com/sveltejs/svelte#README",
60 "devDependencies": {
61 "@sveltejs/svelte-repl": "0.0.5",
62 "@types/mocha": "^5.2.0",
63 "@types/node": "^10.5.5",
64 "@typescript-eslint/eslint-plugin": "^1.9.0",
65 "@typescript-eslint/parser": "^1.9.0",
66 "acorn": "^6.1.1",
67 "acorn-dynamic-import": "^4.0.0",
68 "agadoo": "^1.0.1",
69 "c8": "^3.4.0",
70 "codecov": "^3.0.0",
71 "css-tree": "1.0.0-alpha22",
72 "eslint": "^5.16.0",
73 "eslint-plugin-import": "^2.17.3",
74 "estree-walker": "^0.6.1",
75 "is-reference": "^1.1.1",
76 "jsdom": "^12.2.0",
77 "kleur": "^3.0.0",
78 "locate-character": "^2.0.5",
79 "magic-string": "^0.25.2",
80 "mocha": "^5.2.0",
81 "puppeteer": "^1.13.0",
82 "rollup": "^1.1.2",
83 "rollup-plugin-commonjs": "^9.1.0",
84 "rollup-plugin-json": "^3.0.0",
85 "rollup-plugin-node-resolve": "^4.0.0",
86 "rollup-plugin-replace": "^2.0.0",
87 "rollup-plugin-sucrase": "^2.1.0",
88 "rollup-plugin-typescript": "^1.0.0",
89 "rollup-plugin-virtual": "^1.0.1",
90 "source-map": "0.6",
91 "source-map-support": "^0.5.4",
92 "tiny-glob": "^0.2.1",
93 "ts-node": "^8.0.2",
94 "tslib": "^1.8.0",
95 "typescript": "^3.4.0"
96 },
97 "nyc": {
98 "include": [
99 "compiler/svelte.js",
100 "shared.js"
101 ],
102 "sourceMap": true,
103 "instrument": true
104 },
105 "dependencies": {}
106}