-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "sigopt-config",
"version": "2.0.0-dev1",
"main": "src/js/sigopt_config/index.js",
"dependencies": {
"jmespath": "^0.16.0",
"json-merge-patch": "^1.0.2",
"underscore": "^1.12.1",
"yaml": "^2.2.2"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/node": "^7.20.7",
"@babel/eslint-parser": "^7.21.3",
"@babel/eslint-plugin": "^7.19.1",
"@babel/preset-env": "^7.0.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.3.0",
"jest-junit": "^14.0.1"
},
"jest": {
"moduleNameMapper": {
"^yaml$": "<rootDir>/node_modules/yaml/dist"
},
"reporters": [
"default",
"jest-junit"
]
},
"importSort": {
".js": {
"style": "renke"
}
},
"license": "Apache-2.0",
"name": "sigopt-config",
"private": true,
"repository": "https://github.com/sigopt/sigopt-config.git",
"scripts": {
"test": "jest"
}
}