-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 930 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 930 Bytes
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
{
"name": "latency-test",
"version": "0.0.3",
"description": "A simple web server that responds to requests with a specified latency",
"main": "index.js",
"scripts": {
"test": "node test"
},
"repository": {
"type": "git",
"url": "https://github.com/Concurix/latency-test.git"
},
"keywords": [
"concurix",
"latency"
],
"author": "alex@concurix.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/Concurix/latency-test/issues"
},
"homepage": "https://github.com/Concurix/latency-test",
"dependencies": {
"concurix": "0.0.3",
"express": "^4.8.5"
},
"jshintConfig": {
"node": true,
"browser": true,
"devel": true,
"jquery": true,
"undef": true,
"unused": true,
"asi": true,
"indent": 2,
"eqnull": true,
"loopfunc": true,
"eqeqeq": false,
"newcap": false,
"globalstrict": true,
"validthis": true
}
}