-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.39 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "iarl",
"version": "1.0.0",
"description": "interface de acesso remoto a laboratorios",
"main": "./bin/www",
"scripts": {
"test": "echo \"Design\"; standard; echo \"\nTests\"; mocha --timeout 10000 tests/*.test.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "node app.js",
"dev": "NODE_DEV=development DEBUG=app:* nodemon app.js"
},
"engines": {
"node": "8.11.2"
},
"standard": {
"ignore": [
"/tests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Guardians-DSC/iarl.git"
},
"author": "guardians",
"license": "ISC",
"bugs": {
"url": "https://github.com/Guardians-DSC/iarl/issues"
},
"dependencies": {
"archiver": "^3.0.0",
"compression": "^1.7.3",
"config": "^1.30.0",
"consign": "^0.1.6",
"cors": "^2.8.4",
"express": "~4.16.0",
"helmet": "^3.13.0",
"jsonwebtoken": "^8.2.1",
"ldapjs": "^1.0.2",
"morgan": "~1.9.0"
},
"homepage": "https://github.com/Guardians-DSC/iarl#readme",
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.2.1",
"debug": "^2.6.9",
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.0.0",
"nodemon": "^1.19.0"
}
}