Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
exogen committed Nov 15, 2017
1 parent 45e45bc commit ac84d2b
Showing 1 changed file with 24 additions and 7 deletions.
31 changes: 24 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ava-nock",
"version": "0.1.1",
"version": "0.2.0",
"description": "",
"keywords": [
"ava",
Expand All @@ -15,7 +15,10 @@
"author": "Brian Beck <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"files": ["lib", "yarn.lock"],
"files": [
"lib",
"yarn.lock"
],
"scripts": {
"build": "npm run build:lib",
"build:lib": "babel src --out-dir lib --ignore \"**/*.test.js\"",
Expand All @@ -37,19 +40,33 @@
"test:record": "NOCK_MODE=record ava"
},
"ava": {
"require": ["babel-register"],
"files": ["src/**/*.test.js", "test"]
"require": [
"babel-register"
],
"files": [
"src/**/*.test.js",
"test"
]
},
"ava-nock": {
"pathFilter": ["([?&]secretKey=)([^&]*)", "$1*"]
"pathFilter": [
"([?&]secretKey=)([^&]*)",
"$1*"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"lint-staged": {
"*.js": ["eslint --fix", "git add"],
"README.md": ["prettier --write", "git add"]
"*.js": [
"eslint --fix",
"git add"
],
"README.md": [
"prettier --write",
"git add"
]
},
"peerDependencies": {
"ava": "^0.23.0"
Expand Down

0 comments on commit ac84d2b

Please sign in to comment.