forked from rjhilgefort/export-dir
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.66 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.66 KB
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
{
"name": "@rjhilgefort/export-dir",
"version": "1.1.2",
"description": "Declarative `index.js` builder for exporting files in the same directory.",
"main": "src/index.js",
"repository": "git@github.com:rjhilgefort/export-dir.git",
"author": "Rob Hilgefort <rjhilgefort@gmail.com>",
"license": "MIT",
"private": false,
"engines": {
"node": ">=6"
},
"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.26.1"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-watch": "^4.0.2",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"lodash.upperfirst": "^4.3.1",
"prettier": "^1.8.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"
}
]
}
},
"eslintIgnore": [
"__mocks__"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}