Skip to content

Commit

Permalink
remove binários do node_modules
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigondec committed Jun 3, 2020
1 parent b4b638a commit 8680b71
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,20 @@
},
"scripts": {
"deps": "docker-compose -f docker-compose.test.yml up --force-recreate --renew-anon-volumes --remove-orphans",
"eslint": "./node_modules/.bin/eslint --fix .",
"eslint:check": "./node_modules/.bin/eslint .",
"eslint": "eslint --fix .",
"eslint:check": "eslint .",
"style:fix": "npm run prettier && npm run eslint",
"style:check": "npm run prettier:check && npm run eslint:check",
"prettier": "./node_modules/.bin/prettier --write \"**/{*.js,*.json,bin/**}\"",
"prettier:check": "./node_modules/.bin/prettier --check \"**/{*.js,*.json,bin/**}\"",
"prettier": "prettier --write \"**/{*.js,*.json,bin/**}\"",
"prettier:check": "prettier --check \"**/{*.js,*.json,bin/**}\"",
"start": "node ./bin/www",
"start:docker": "docker-compose up --force-recreate --renew-anon-volumes --remove-orphans",
"debug": "node --inspect-brk ./bin/www",
"cli": "node --experimental-repl-await",
"test": "./node_modules/.bin/nyc mocha --reporter spec",
"coverage": "./node_modules/.bin/nyc --reporter=json --reporter=text mocha --reporter spec",
"test": "nyc mocha --reporter spec",
"test:acceptance": "npm t test/acceptance/*",
"test:unit": "npm t test/unit/*"
"test:unit": "npm t test/unit/*",
"coverage": "nyc --reporter=json --reporter=text mocha --reporter spec"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 8680b71

Please sign in to comment.