-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 926 Bytes
/
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
{
"name": "@sveltejs/generate-ssr",
"description": "SSR generator for Svelte",
"version": "1.0.0",
"repository": "sveltejs/generate-ssr",
"module": "index.js",
"types": "types/index.d.ts",
"files": [
"index.js",
"types"
],
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.9.4",
"glob": "^7.1.2",
"mocha": "^5.2.0",
"rollup": "^0.65.2",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-typescript": "^0.8.1",
"sander": "^0.6.0",
"ts-node": "^7.0.1",
"typescript": "^3.0.3"
},
"scripts": {
"build-declarations": "tsc -d && node scripts/move-type-declarations.js",
"build": "npm run build-declarations && rollup -c",
"dev": "rollup -cw",
"test": "mocha --opts mocha.opts",
"prepublishOnly": "npm test && npm run build"
},
"license": "LIL",
"dependencies": {
"acorn": "^5.7.2",
"tslib": "^1.9.3"
}
}