forked from WebFuzzing/EMB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "cyclotron-svc",
"description": "Cyclotron: REST API",
"version": "2.0.4",
"author": "Dave Bauman <[email protected]>",
"license": "MIT",
"private": true,
"engines": {
"node": ">= 0.10"
},
"repository": {
"type": "git",
"url": "https://github.com/ExpediaInceCommercePlatform/cyclotron"
},
"bugs": {
"url": "https://github.com/ExpediaInceCommercePlatform/cyclotron/issues"
},
"scripts": {
"start": "node src/server.js",
"check": "babel src -d check",
"test": "jest --coverage",
"em:run": "node instrumented/em/em-main.js",
"em:build": "rimraf instrumented && babel src -d instrumented/src --copy-files && babel em -d instrumented/em --copy-files"
},
"dependencies": {
"aws4": "^1.8.0",
"bluebird": "2.3.6",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"elasticsearch": "^11.0.1",
"errorhandler": "^1.5.0",
"express": "^4.16.3",
"highland": "^3.0.0-beta.2",
"ip": "0.3.0",
"json2csv": "^3.6.3",
"json2xls": "^0.1.2",
"jsondiffpatch": "0.1.41",
"ldapjs": "1.0.1",
"lodash": "^4.17.15",
"moment": "^2.22.2",
"mongoose": "~4.5.1",
"morgan": "^1.9.1",
"node-uuid": "~1.4.3",
"passport": "~0.2.2",
"passport-ldapauth": "1.0.0",
"request": "^2.88.0",
"serve-static": "^1.13.2",
"shortid": "2.2.13",
"ssl-root-cas": "^1.2.2",
"swagger-ui-dist": "^3.24.0"
},
"devDependencies": {
"del": "^3.0.0",
"@babel/cli": "7.8.4",
"@babel/core": "7.8.4",
"evomaster-client-js": "1.6.1",
"jest": "24.9.0",
"dedent": "0.7.0",
"superagent": "5.2.2",
"supertest": "4.0.2",
"testcontainers": "^6.3.0",
"rimraf": "^3.0.0"
},
"babel": {
"only": [
"src"
],
"plugins": [
"module:evomaster-client-js"
]
},
"jest": {
"testEnvironment": "node",
"testRegex": "em/.*Test\\.(js|jsx|ts|tsx)$",
"collectCoverageFrom": [
"src/**/*.(js|jsx|ts|tsx)"
],
"coverageReporters": [
"json",
"html",
"json-summary"
],
"transformIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/bbtests/",
"<rootDir>/tests/",
"<rootDir>/check/",
"<rootDir>/build/",
"<rootDir>/em"
]
}
}