-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.57 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@moltin/importer",
"version": "0.0.0-semantic-release",
"description": "A CLI to import data into Moltin via CSV",
"main": "src/index.js",
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"pretest": "./node_modules/.bin/eslint --ignore-path .gitignore . --fix"
},
"bin": {
"@moltin/importer": "bin/import",
"importer": "bin/import"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"moltin",
"import"
],
"author": "Matthew Foyle",
"license": "MIT",
"dependencies": {
"@moltin/request": "^2.0.2",
"@moltin/sdk": "3.22.0",
"arg": "4.1.0",
"bull": "3.10.0",
"bull-arena": "2.6.3",
"bull-ui": "1.2.3",
"chalk": "2.4.2",
"conventional-changelog-lint-config-cz": "^0.3.0",
"dotenv": "8.0.0",
"envfile": "^3.0.0",
"esm": "^3.2.25",
"express": "4.17.1",
"fast-csv": "3.0.1",
"figlet": "^1.2.3",
"inquirer": "^6.4.1",
"lodash": "^4.17.11",
"lodash.merge": "^4.6.1",
"path": "^0.12.7",
"redis": "^2.8.0"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@moltin/eslint-config": "1.0.0",
"husky": "^3.0.0"
},
"files": [
"bin/",
"src/"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run pretest"
}
},
"lint-staged": {
"*.js": [
"./node_modules/.bin/eslint — fix",
"git add"
]
}
}