-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.48 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
{
"name": "babel-plugin-ramda-no-useless-merge",
"version": "1.1.3",
"description": "Babel Plugin to transform `R.merge(a, b)` → `{...a, ...b}`",
"main": "src/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"release:patch": "release patch",
"release:minor": "release minor",
"release:major": "release major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pnavarrc/babel-plugin-ramda-no-useless-merge.git"
},
"keywords": [
"babel-plugin",
"ramda"
],
"author": "Pablo Navarro <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pnavarrc/babel-plugin-ramda-no-useless-merge/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,json,css,md,babelrc}": [
"prettier --write",
"git add"
],
"*.{js,jsx}": "eslint"
},
"homepage": "https://github.com/pnavarrc/babel-plugin-ramda-no-useless-merge#readme",
"devDependencies": {
"@codemod/cli": "^2.1.7",
"babel-plugin-tester": "^7.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"prettier": "^1.17.1",
"prettier-eslint": "^9.0.0",
"release": "^6.0.1"
},
"dependencies": {
"@babel/types": "^7.4.4",
"husky": "^3.0.2",
"lint-staged": "^9.2.0"
}
}