-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.17 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
{
"name": "@greenberry/datocms-migration-utils",
"version": "1.0.17",
"description": "A collection of utils to help with the development of DatoCMS migration files",
"repository": "git@github.com:greenberrynl/datocms-migration-utils.git",
"author": "Ramon Gebben <ramon.gebben@greenberry.nl>",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint src/**/*.js"
},
"husky": {
"hooks": {
"pre-push": "yarn lint && yarn test"
}
},
"jest": {
"testURL": "http://localhost",
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/coverage/**",
"!**/node_modules/**",
"!.eslintrc",
"!.prettierrc.js"
],
"modulePathIgnorePatterns": [
"./dist/"
]
},
"devDependencies": {
"@greenberry/eslint-config": "1.1.2",
"@greenberry/prettier-config": "1.0.0",
"babel-eslint": "10.1.0",
"eslint": "7.6.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-react": "7.20.5",
"eslint-plugin-react-hooks": "4.0.8",
"husky": "4.2.5",
"jest": "26.3.0",
"prettier": "2.0.5"
},
"dependencies": {
"color": "^3.1.2"
}
}