-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "@mcansh/etsy-csv-generator",
"version": "1.2.0",
"description": "Generate a csv file for your etsy store, originally made for an instagram shop bulk upload",
"license": "MIT",
"author": "Logan McAnsh <[email protected]> (https://mcan.sh)",
"main": "dist/index.js",
"bin": "dist/cli.js",
"scripts": {
"build": "tsc",
"lint": "eslint --cache --ext .js,.ts --fix"
},
"dependencies": {
"csv-writer": "1.6.0",
"he": "1.2.0",
"kleur": "4.1.3",
"node-fetch": "2.6.1",
"sade": "1.7.4"
},
"devDependencies": {
"@types/he": "1.1.1",
"@types/node": "14.11.2",
"@types/node-fetch": "2.5.7",
"@types/sade": "1.7.2",
"@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/parser": "4.3.0",
"eslint": "7.10.0",
"eslint-config-prettier": "6.12.0",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.3.0",
"lint-staged": "10.4.0",
"prettier": "2.1.2",
"typescript": "4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix"
}
}