-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.01 KB
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
{
"name": "boardfarm_server_api",
"version": "1.1.4",
"description": "A REST API for checking in/out devices and seeing status",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mbanders/boardfarm_server_api.git"
},
"author": "Mike Anderson",
"license": "MIT",
"bugs": {
"url": "https://github.com/mbanders/boardfarm_server_api/issues"
},
"homepage": "https://github.com/mbanders/boardfarm_server_api#readme",
"dependencies": {
"body-parser": "^1.19.0",
"compare-versions": "^3.5.1",
"express": "^4.17.1",
"memory-cache": "^0.2.0",
"mongodb": "^3.2.7"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0"
}
}