-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.1 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
{
"name": "feature-importer",
"engines": {
"node": ">=18.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": "^6.9.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.52.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/inquirer": "^9.0.3",
"@types/lodash": "^4.14.200",
"dotenv": "^16.3.1",
"i18n-iso-countries": "^7.7.0",
"inquirer": "^8.0.1",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"ts-node": "^10.9.1"
}
}