forked from sveltejs/sapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.28 KB
/
package.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "sapper",
"version": "0.27.4",
"description": "Military-grade apps, engineered by Svelte",
"bin": {
"sapper": "./sapper"
},
"files": [
"*.js",
"webpack",
"config",
"sapper",
"dist/*.js",
"runtime/*.mjs",
"runtime/internal"
],
"directories": {
"test": "test"
},
"dependencies": {
"html-minifier": "^4.0.0",
"http-link-header": "^1.0.2",
"shimport": "^1.0.0",
"sourcemap-codec": "^1.4.4",
"string-hash": "^1.1.3"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.7",
"@types/puppeteer": "^1.12.4",
"agadoo": "^1.0.1",
"cheap-watch": "^1.0.2",
"cookie": "^0.4.0",
"devalue": "^1.1.1",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.3",
"kleur": "^3.0.3",
"mocha": "^6.1.4",
"node-fetch": "^2.6.0",
"npm-run-all": "^4.1.5",
"polka": "^0.5.2",
"port-authority": "^1.0.5",
"pretty-bytes": "^5.2.0",
"puppeteer": "^1.17.0",
"require-relative": "^0.8.7",
"rollup": "^1.14.5",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-sucrase": "^2.1.0",
"rollup-plugin-svelte": "^5.0.3",
"sade": "^1.5.0",
"sirv": "^0.4.2",
"sucrase": "^3.10.1",
"svelte": "^3.5.0",
"svelte-loader": "^2.13.4",
"webpack": "^4.33.0",
"webpack-format-messages": "^2.0.5",
"yootils": "0.0.16"
},
"peerDependencies": {
"svelte": "^3.5.0"
},
"scripts": {
"test": "mocha --opts mocha.opts",
"pretest": "npm run build",
"build": "rm -rf dist && rollup -c",
"prepare": "npm run build",
"dev": "rollup -cw",
"prepublishOnly": "npm test",
"update_mime_types": "curl http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types | grep -e \"^[^#]\" > runtime/src/server/middleware/mime-types.md"
},
"repository": "https://github.com/sveltejs/sapper",
"keywords": [
"svelte",
"isomorphic",
"universal",
"template",
"express"
],
"author": "Rich Harris",
"license": "MIT",
"bugs": {
"url": "https://github.com/sveltejs/sapper/issues"
},
"homepage": "https://github.com/sveltejs/sapper#readme"
}