-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 1.7 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
75
76
77
{
"name": "@rjhilgefort/export-dir",
"version": "2.0.0",
"description": "Declarative `index.js` builder for exporting files in the same directory.",
"main": "src/index.js",
"repository": "[email protected]:rjhilgefort/export-dir.git",
"author": "Rob Hilgefort <[email protected]>",
"license": "MIT",
"private": false,
"engines": {
"node": ">=10"
},
"scripts": {
"clean": "rm -rf ./node_modules",
"reinstall": "yarn clean && yarn install",
"lint": "esw . --ext .js",
"lint:fix": "yarn lint --fix",
"lint:watch": "yarn lint --watch",
"lint:staged": "lint-staged",
"test": "jest --verbose src",
"test:watch": "yarn test --watch -o"
},
"dependencies": {
"lodash.camelcase": "^4.3.0",
"ramda": "^0.27.1"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-watch": "^7.0.0",
"husky": "^4.3.0",
"jest": "^26.6.0",
"lint-staged": "^10.4.2",
"lodash.upperfirst": "^4.3.1",
"prettier": "^2.1.2"
},
"lint-staged": {
"*.js": "esw"
},
"jest": {
"testEnvironment": "node"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"prettier"
],
"plugins": [
"prettier"
],
"env": {
"node": true,
"jest": true
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"trailingComma": "all",
"printWidth": 80
}
]
}
},
"eslintIgnore": [
"__mocks__"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}