-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.35 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
{
"name": "@hutsoninc/utils",
"version": "1.0.6",
"description": "Hutson marketing team utility belt",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pretest": "npm run lint",
"test": "jest"
},
"author": {
"name": "AustinLeeGordon",
"email": "gordon.austin2@gmail.com",
"url": "http://www.austinleegordon.com"
},
"dependencies": {
"csvtojson": "^2.0.10",
"json2csv": "^4.5.1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-config-xo": "^0.26.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.7.0",
"jest": "^24.8.0",
"lint-staged": "^9.0.0",
"prettier": "^1.18.2"
},
"jest": {
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": "warn"
},
"plugins": [
"prettier"
]
},
"repository": {
"type": "git",
"url": "https://github.com/hutsoninc/utils"
},
"license": "MIT"
}