-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.23 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
{
"name": "node-pong",
"version": "1.2.5",
"description": "Provides an automated answer on \"/ping\" endpoint. Works on multiple ports.",
"main": "node-pong.js",
"scripts": {
"test": "mocha",
"pretest": "eslint --ignore-path .gitignore .",
"test-with-coverage-text": "nyc --check-coverage --lines 90 --reporter=text mocha",
"test-with-coverage-html": "nyc --reporter=html mocha",
"start": "node node-pong.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/migueldiasbr/node-pong.git"
},
"keywords": [
"nodejs",
"http",
"ping",
"pong",
"api",
"request",
"response",
"endpoint"
],
"author": "Miguel Dias <migueldiasbr@gmail.com>",
"contributors": [
"Miguel Dias <migueldiasbr@gmail.com> (http://migueldiasbr.blog/projects/node-pong.html)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/migueldiasbr/node-pong/issues"
},
"homepage": "https://github.com/migueldiasbr/node-pong#readme",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"mocha": "^5.1.1",
"nyc": "^11.8.0"
}
}