Skip to content
This repository has been archived by the owner on Oct 17, 2023. It is now read-only.

Commit

Permalink
chore: sort package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
thecotne committed Nov 28, 2016
1 parent 40ab46b commit 9541b40
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -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 <cotne.nazarashvili@gmail.com>",
"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 <cotne.nazarashvili@gmail.com>",
"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"
},
Expand All @@ -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"
Expand Down

0 comments on commit 9541b40

Please sign in to comment.