-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.73 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
{
"name": "feature-importer",
"engines": {
"node": ">=24.0.0"
},
"version": "1.0.0",
"description": "DevCycle Feature Importer",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevCycleHQ/feature-importer.git"
},
"keywords": [
"DevCycle",
"feature",
"importer"
],
"author": "DevCycle",
"license": "MIT",
"bugs": {
"url": "https://github.com/DevCycleHQ/feature-importer/issues"
},
"homepage": "https://github.com/DevCycleHQ/feature-importer#readme",
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"eslint": "^8.57.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"overrides": {
"@babel/core@<=7.29.0": "7.29.6",
"browserslist@<=4.28.6": "4.28.7",
"brace-expansion@<1.1.18": "1.1.18",
"brace-expansion@>=2.0.0 <2.1.4": "2.1.4",
"brace-expansion@>=3.0.0 <3.0.6": "3.0.6",
"brace-expansion@>=4.0.0 <5.0.9": "5.0.9",
"flatted@<=3.4.1": "3.4.2",
"js-yaml@<3.15.1": "3.15.1",
"js-yaml@>=4.0.0 <4.3.1": "4.3.1",
"picomatch@<2.3.2": "2.3.2",
"picomatch@>=4.0.0 <4.0.4": "4.0.4"
},
"dependencies": {
"@types/inquirer": "^9.0.3",
"@types/lodash": "^4.14.200",
"dotenv": "^16.3.1",
"i18n-iso-countries": "^7.7.0",
"inquirer": "^8.2.7",
"jest": "^29.7.0",
"lodash": "^4.18.1",
"ts-node": "^10.9.1"
}
}