graphql-input-number
Advanced tools
Comparing version 0.0.1 to 0.0.2
{ | ||
"name": "graphql-input-number", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "A configurable custom input number type for GraphQL with sanitization and validation.", | ||
"main": "lib/index.js", | ||
"scripts": { | ||
"clear": "rm -rf ./lib/ ./testout/", | ||
"build": "babel src --out-dir lib", | ||
"build-watch": "babel src --watch --out-dir lib", | ||
"start": "npm run clear && npm run build && npm run test-build && npm run test", | ||
"test-build": "babel test --out-dir testout", | ||
"test-build-watch": "babel test --watch --out-dir testout", | ||
"pretest": "npm run build && npm run test-build", | ||
"test": "mocha testout/**/*.js", | ||
"test-watch": "mocha --watch testout/**/*.js", | ||
"watch": "npm run build-watch & npm run test-build-watch & npm run test-watch", | ||
"update-D": "npm install --save-dev babel-cli@latest babel-preset-es2015@latest babel-preset-stage-0@latest chai@latest mocha@latest" | ||
"clear": "rm -rf ./lib ./coverage ./.nyc_output", | ||
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls", | ||
"prepublish": "npm run clear && npm test", | ||
"pretest": "npm run build", | ||
"start": "npm test", | ||
"test": "mocha", | ||
"test-watch": "mocha --watch", | ||
"update-D": "npm install --save-dev babel-cli@latest babel-preset-es2015@latest babel-preset-stage-0@latest babel-register@latest chai@latest chai-as-promised@latest coveralls@latest graphql@latest mocha@latest nyc@latest", | ||
"watch": "npm run build-watch & npm run test-watch" | ||
}, | ||
@@ -48,6 +48,10 @@ "repository": { | ||
"babel-preset-stage-0": "^6.5.0", | ||
"babel-register": "^6.9.0", | ||
"chai": "^3.5.0", | ||
"chai-as-promised": "^5.3.0", | ||
"coveralls": "^2.11.9", | ||
"graphql": "*", | ||
"mocha": "^2.5.3" | ||
"mocha": "^2.5.3", | ||
"nyc": "^6.4.4" | ||
} | ||
} |
6627
10