UNPKG

rest-in-contract-dsl

Version:
63 lines (62 loc) 1.3 kB
{ "name": "rest-in-contract-dsl", "version": "0.2.3", "description": "Contract script DSL for rest-in-contract.", "repository": { "type": "git", "url": "https://github.com/airicyu/rest-in-contract-dsl" }, "main": "index.js", "scripts": { "test": "nyc mocha", "coverage": "nyc report --reporter=text-lcov > coverage/icov.info && codecov --file=./coverage/lcov.info" }, "engines": { "node": ">= 6.0.0" }, "keywords": [ "REST", "API", "Consumer-driven contracts", "Contract", "Stub" ], "author": "Eric Yu", "email": "airic.yu@gmail.com", "license": "Apache-2.0", "dependencies": { "faker": "^4.1.0", "jsonpath": "^1.0.0", "moment": "^2.22.2", "randexp": "^0.5.3", "uuid": "^3.3.2" }, "devDependencies": { "chai": "^4.1.2", "codecov": "^3.0.4", "mocha": "^5.2.0", "nyc": "^12.0.2", "supertest": "^3.1.0" }, "nyc": { "check-coverage": true, "per-file": true, "lines": 70, "statements": 70, "functions": 70, "branches": 70, "include": [ "src/**.js" ], "exclude": [], "reporter": [ "lcov", "text-summary" ], "require": [], "extension": [], "cache": true, "all": true, "report-dir": "./coverage" } }