diff --git a/package.json b/package.json index 85eb424..8fa4ebc 100644 --- a/package.json +++ b/package.json @@ -1,35 +1,40 @@ { "name": "webpack-glob-entry", "description": "simple function to transform glob patterns in webpack entry object", - "main": "lib/index.js", + "keywords": [ + "webpack" + ], + "homepage": "https://github.com/thecotne/webpack-glob-entry#readme", + "bugs": { + "url": "https://github.com/thecotne/webpack-glob-entry/issues" + }, + "license": "MIT", + "author": "cotne nazarashvili ", "files": [ "lib/index.js" ], + "main": "lib/index.js", + "repository": { + "type": "git", + "url": "https://github.com/thecotne/webpack-glob-entry.git" + }, "scripts": { + "build": "babel src/index.js -o lib/index.js", + "build:production": "babel src/index.js -o lib/index.js", + "coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js", "lint": "eslint {src,spec}/**.js", + "report-coverage": "nyc report --reporter=lcov", + "semantic-release": "semantic-release pre && npm publish && semantic-release post", "test": "cross-env NODE_ENV=test nyc jasmine", "test:lib": "cross-env JASMINE_TEST=lib jasmine", "test:production": "npm run build:production && npm run test:lib", - "report-coverage": "nyc report --reporter=lcov", - "coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js", - "build": "babel src/index.js -o lib/index.js", - "build:production": "babel src/index.js -o lib/index.js", - "watch": "babel src/index.js -o lib/index.js -w", - "semantic-release": "semantic-release pre && npm publish && semantic-release post" - }, - "repository": { - "type": "git", - "url": "https://github.com/thecotne/webpack-glob-entry.git" + "watch": "babel src/index.js -o lib/index.js -w" }, - "keywords": [ - "webpack" - ], - "author": "cotne nazarashvili ", - "license": "MIT", - "bugs": { - "url": "https://github.com/thecotne/webpack-glob-entry/issues" + "config": { + "commitizen": { + "path": "./node_modules/cz-conventional-changelog" + } }, - "homepage": "https://github.com/thecotne/webpack-glob-entry#readme", "dependencies": { "glob": "^7.1.1" }, @@ -54,11 +59,6 @@ "nyc": "^10.0.0", "semantic-release": "^6.3.2" }, - "config": { - "commitizen": { - "path": "./node_modules/cz-conventional-changelog" - } - }, "nyc": { "include": [ "src/*.js"