-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.58 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.58 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
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
{
"name": "split-evaluator",
"version": "2.1.0",
"description": "Split-Evaluator",
"repository": "splitio/split-evaluator",
"homepage": "https://github.com/splitio/split-evaluator#readme",
"bugs": "https://github.com/splitio/split-evaluator/issues",
"license": "Apache-2.0",
"author": "Facundo Cabrera <facundo@split.io>",
"contributors": [
{
"name": "Nico Zelaya",
"email": "nicolas.zelaya@split.io",
"url": "https://github.com/NicoZelaya"
},
{
"name": "Matias Melograno",
"email": "matias.melograno@split.io",
"url": "https://github.com/mmelograno"
}
],
"jest": {
"testPathIgnorePatterns": [
"config"
],
"setupFiles": [
"<rootDir>/.jest/setEnvVars.js"
],
"setupFilesAfterEnv": [
"<rootDir>/.jest/app.setup.js"
]
},
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"start": "node server.js",
"start:debug": "node --inspect-brk server.js",
"lint": "eslint .",
"test": "NODE_ENV=test jest"
},
"dependencies": {
"@splitsoftware/splitio": "10.22.0",
"config": "1.25.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"morgan": "^1.9.1",
"npm": "^8.13.2",
"request": "^2.88.0",
"request-promise-native": "1.0.9",
"swagger-ui-express": "^4.3.0"
},
"engines": {
"node": "16"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"babel-jest": "^26.6.3",
"eslint": "^8.9.0",
"jest": "^26.6.3",
"nodemon": "^2.0.12",
"superagent": "^5.1.0",
"supertest": "^4.0.2"
}
}