This repository has been archived by the owner on Oct 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
55 lines (55 loc) · 1.57 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
{
"name": "squirrel-updates-server",
"version": "0.6.0",
"description": "A simple node.js server for Squirrel.Mac and Squirrel.Windows which uses GitHub releases.",
"private": true,
"main": "index.js",
"scripts": {
"prestart": "npm run build",
"start": "node index.js",
"build": "babel src -d lib",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "babel src -d lib && (babel src -w -d lib &) && sleep 2 && nodemon -w src index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aluxian/squirrel-updates-server.git"
},
"keywords": [
"electron",
"updates",
"update",
"server",
"github"
],
"author": "Alexandru Rosianu <[email protected]> (http://www.aluxian.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Aluxian/squirrel-updates-server/issues"
},
"homepage": "https://github.com/Aluxian/squirrel-updates-server#readme",
"dependencies": {
"apicache": "0.8.3",
"babel-cli": "6.7.7",
"babel-plugin-array-includes": "2.0.3",
"babel-plugin-transform-es2015-classes": "6.7.7",
"babel-plugin-transform-runtime": "6.7.5",
"babel-preset-es2015": "6.6.0",
"babel-preset-stage-0": "6.5.0",
"babel-runtime": "6.6.1",
"es6-error": "3.0.0",
"express": "4.13.4",
"github4": "0.6.0",
"morgan": "1.7.0",
"newrelic": "1.27.2",
"numeral": "1.5.3",
"raven": "0.11.0",
"request": "2.72.0",
"semver": "5.1.0"
},
"devDependencies": {
"babel-eslint": "6.0.4",
"eslint": "2.11.1",
"nodemon": "1.9.1"
}
}