-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.52 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
{
"name": "split-evaluator",
"version": "2.7.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",
"environmentManager/__tests__/constants"
],
"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": "11.0.3",
"config": "^3.3.9",
"express": "^4.17.1",
"morgan": "^1.9.1",
"swagger-ui-express": "^4.3.0"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"babel-jest": "^29.7.0",
"eslint": "^8.9.0",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"superagent": "^8.0.9",
"supertest": "^6.3.1"
}
}