Skip to content

Commit

Permalink
fixed repo link in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
meinstein committed Jan 11, 2018
1 parent d1b1bda commit 042b334
Showing 1 changed file with 8 additions and 14 deletions.
22 changes: 8 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,14 @@
"test": "NODE_ENV=test jest",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage",
"test:coverage:report": "npm run test:coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
"test:coverage:report":
"npm run test:coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "github.com/meinstein/react-file-picker"
"url": "https://github.com/meinstein/react-file-picker.git"
},
"keywords": [
"react",
"file",
"input"
],
"keywords": ["react", "file", "input"],
"author": "Maximillian Einstein",
"license": "MIT",
"devDependencies": {
Expand Down Expand Up @@ -62,14 +59,11 @@
"jest": {
"testRegex": "(/src/.*test\\.js)$",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/config/__mocks__/fileMock.js",
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$":
"<rootDir>/config/__mocks__/fileMock.js",
"\\.(css|scss)$": "<rootDir>/config/__mocks__/styleMock.js"
},
"modulePaths": [
"<rootDir>/src"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
]
"modulePaths": ["<rootDir>/src"],
"coveragePathIgnorePatterns": ["/node_modules/"]
}
}

0 comments on commit 042b334

Please sign in to comment.