-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 728 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "backgammon.js",
"version": "0.0.1",
"author": "quasoft <info@quasoft.net>",
"description": "Backgammon.js Game",
"license": "MIT",
"scripts": {
"build:browser": "cd app/browser && npm run build && cd ..",
"build": "npm run build:browser",
"start:server": "node ./app/server/server.js",
"start": "npm run build:browser && npm run start:server",
"install:browser": "cd app/browser && npm install -dd && cd ..",
"install:server": "cd app/server && npm install -dd && cd ..",
"installall": "npm run install:browser && npm run install:server",
"postinstall": "npm run installall && npm run build",
"lint": "jshint ."
},
"devDependencies": {
"jshint": "^2.9.4"
}
}