forked from sveltejs/svelte-repl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.17 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "@sveltejs/svelte-repl",
"version": "0.1.8",
"description": "The <Repl> component used on the Svelte website",
"main": "src/Repl.svelte",
"svelte": "src/Repl.svelte",
"scripts": {
"dev": "rollup -cw",
"build": "rollup -c",
"srcdoc:update": "curl https://raw.githubusercontent.com/sveltejs/template/v3/public/global.css > src/Output/srcdoc/styles.css",
"srcdoc": "npm run srcdoc:update && node scripts/build-srcdoc.js",
"prepublishOnly": "npm run srcdoc && npm run build && npm test",
"test": "echo \"no tests yet\"",
"lint": "eslint src/**.svelte src/**.js"
},
"devDependencies": {
"eslint": "^5.12.1",
"eslint-plugin-svelte3": "^0.4.4",
"rollup": "^1.12.4",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-terser": "^5.0.0",
"svelte": "^3.6.4"
},
"repository": "https://github.com/sveltejs/svelte-repl",
"author": "Rich Harris",
"license": "LIL",
"keywords": [
"svelte"
],
"files": [
"src",
"workers"
],
"dependencies": {
"codemirror": "^5.45.0",
"estree-walker": "^0.6.0",
"sourcemap-codec": "^1.4.4",
"yootils": "0.0.15"
}
}