UNPKG

1.81 kBJSONView Raw
1{
2 "name": "@fresh8/copacetic",
3 "version": "3.3.0",
4 "description": "A package to help your service check the health of its dependencies.",
5 "main": "index.js",
6 "scripts": {
7 "coverage": "nyc npm test && nyc report --reporter=lcov",
8 "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
9 "test": "mocha --recursive ./test",
10 "lint": "standard \"test/**/*.js\" \"lib/**/*.js\" --fix"
11 },
12 "engines": {
13 "node": ">=6.9.0"
14 },
15 "standard": {
16 "globals": [
17 "describe",
18 "it",
19 "before",
20 "beforeEach"
21 ]
22 },
23 "nyc": {
24 "watermarks": {
25 "lines": [
26 80,
27 95
28 ],
29 "functions": [
30 80,
31 95
32 ],
33 "branches": [
34 80,
35 95
36 ],
37 "statements": [
38 80,
39 95
40 ]
41 }
42 },
43 "repository": {
44 "type": "git",
45 "url": "git+https://github.com/fresh8/copacetic.git"
46 },
47 "author": "Toby Coleman",
48 "license": "MIT",
49 "bugs": {
50 "url": "https://github.com/fresh8/copacetic/issues"
51 },
52 "homepage": "https://github.com/fresh8/copacetic#readme",
53 "devDependencies": {
54 "@types/node": "^6.0.78",
55 "chai": "^3.5.0",
56 "coveralls": "^2.13.1",
57 "ioredis": "3.x",
58 "mocha": "^3.4.2",
59 "mongodb": "2.x",
60 "mongoose": "4.x",
61 "nock": "^9.0.13",
62 "node-fetch": "1.x",
63 "nyc": "^11.0.1",
64 "sequelize": "4.x",
65 "standard": "^10.0.2"
66 },
67 "dependencies": {
68 "codependency": "^2.0.1",
69 "human-interval": "^0.1.6",
70 "lodash.isobject": "^3.0.2",
71 "node-fetch": "^1.7.0",
72 "node-noop": "^1.0.0",
73 "precond": "^0.2.3"
74 },
75 "optionalPeerDependencies": {
76 "node-fetch": "1.x",
77 "mongodb": "2.x",
78 "mongoose": "4.x",
79 "ioredis": "3.x",
80 "sequelize": "4.x"
81 },
82 "typings": "copacetic.d.ts"
83}