Skip to content

Commit

Permalink
2.0.0-rc.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffijoe committed Feb 1, 2018
1 parent a6d4508 commit 4b928e7
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "yenv",
"version": "1.0.6",
"version": "2.0.0-rc.0",
"description": "Environment management using YAML.",
"main": "lib/yenv.js",
"engines": {
Expand All @@ -12,18 +12,19 @@
"scripts": {
"test": "mocha test/**/*.js --require test/index.js",
"test-watch": "npm run test -- --watch",
"lint":
"esw --fix lib/ test/ && prettier --write '{lib,test}/**/*.{js,ts}'",
"lint": "esw --fix lib/ test/ && prettier --write '{lib,test}/**/*.{js,ts}'",
"lint-watch": "npm run lint -- --watch",
"cover":
"istanbul cover -x \"**example/**\" ./node_modules/mocha/bin/_mocha -- test/**/*.js --require test/index.js",
"coveralls":
"istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- test/**/*.js --require test/index.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"cover": "istanbul cover -x \"**example/**\" ./node_modules/mocha/bin/_mocha -- test/**/*.js --require test/index.js",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- test/**/*.js --require test/index.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"do-publish": "npm run test && npm run lint && npm publish",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": ["esw --fix", "prettier --write", "git add"]
"*.js": [
"esw --fix",
"prettier --write",
"git add"
]
},
"prettier": {
"semi": false,
Expand All @@ -33,7 +34,11 @@
"type": "git",
"url": "git+https://github.com/jeffijoe/yenv.git"
},
"keywords": ["env", "environment", "yaml"],
"keywords": [
"env",
"environment",
"yaml"
],
"author": "Jeff Hansen <jeff@jeffijoe.com>",
"license": "MIT",
"bugs": {
Expand Down

0 comments on commit 4b928e7

Please sign in to comment.