-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
31 lines (31 loc) · 870 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
{
"name": "applicationize",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/eladnava/applicationize"
},
"description": "Applicationize your favorite web apps by wrapping them inside a Chrome extension that runs standalone like a native desktop app.",
"main": "server.js",
"scripts": {
"start": "forever start -l /home/node/server.log --append server.js",
"stop": "forever stop 0",
"restart": "npm stop; npm start"
},
"author": "Elad Nava",
"license": "Apache-2.0",
"dependencies": {
"cheerio": "1.0.0-rc.12",
"crx": "^5.0.1",
"fs-extra": "^7.0.1",
"koa": "1.1.2",
"koa-better-body": "^2.0.1",
"koa-route": "2.4.2",
"koa-send": "^3.2.0",
"koa-static": "1.5.2",
"pem": "^1.14.2",
"request": "^2.88.0",
"thunkify": "2.1.2",
"validator": "^13.7.0"
}
}