forked from xiamx/ssr-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1005 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
37
{
"name": "ssr-proxy",
"version": "1.0.3",
"description": "Server-Side Rendering Proxy - Prerender your single page app for better SEO and support on legacy browsers",
"main": "src/index.js",
"scripts": {
"test": "npm run lint && npm run build",
"build": "tsc",
"start": "node src/index",
"lint": "tslint src/**/*.ts bin/**/*.ts",
"prepublish": "npm run build"
},
"bin": {
"ssr-proxy": "./bin/ssr-proxy.js"
},
"repository": {
"type": "git",
"url": "https://github.com/xiamx/ssr-proxy.git"
},
"author": "Mengxuan Xia <[email protected]> (http://www.xiamx.me)",
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.14.41",
"@types/node": "^6.0.51",
"@types/phantom": "0.0.30",
"@types/yargs": "^6.3.3",
"tslint": "^4.0.2",
"typescript": "^2.1.0"
},
"dependencies": {
"http-proxy": "^1.15.2",
"lodash": "^4.17.2",
"lodash.debounce": "^4.0.8",
"phantom": "^3.2.0",
"yargs": "^6.5.0"
}
}