forked from NodeGuy/server-date
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 1.06 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
{
"name": "serverdate",
"version": "3.1.0",
"description": "Make the server's clock available to the browser.",
"main": "lib/ServerDate.js",
"scripts": {
"test:network": "docker network create ServerDate",
"test:client": "docker run --name=serverdate_client --net=ServerDate --detach selenium/standalone-chrome-debug:latest",
"test:server": "docker run --name=serverdate_server --net=ServerDate --volume=$PWD:/usr/src/app --workdir=/usr/src/app --rm node:4 npm run test:stage2",
"pretest": "npm run test:network; npm run test:client",
"test": "npm run test:server",
"test:stage2": "mocha",
"posttest": "npm run test:clean",
"test:clean": "docker rm --force serverdate_client; docker network rm ServerDate"
},
"repository": {
"type": "git",
"url": "git://github.com/NodeGuy/ServerDate.git"
},
"keywords": [
"Node.js",
"Date"
],
"author": "David Braun",
"license": "LGPL-3.0",
"readmeFilename": "README.md",
"devDependencies": {
"express": "^4.13.4",
"mocha": "^2.4.5",
"webdriverio": "^4.0.3"
}
}