UNPKG

2.11 kBJSONView Raw
1{
2 "name": "@fresh8/copacetic",
3 "version": "4.0.2",
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",
8 "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
9 "doc": "jsdoc2md --template README.hbs lib/copacetic.js > README.md",
10 "test": "mocha --timeout 60000 --recursive ./test",
11 "lint": "standard \"test/**/*.js\" \"lib/**/*.js\" --fix"
12 },
13 "engines": {
14 "node": ">=6.9.0"
15 },
16 "standard": {
17 "globals": [
18 "describe",
19 "it",
20 "before",
21 "beforeEach"
22 ]
23 },
24 "nyc": {
25 "watermarks": {
26 "lines": [
27 80,
28 95
29 ],
30 "functions": [
31 80,
32 95
33 ],
34 "branches": [
35 80,
36 95
37 ],
38 "statements": [
39 80,
40 95
41 ]
42 },
43 "reporter": [
44 "html",
45 "json"
46 ],
47 "report-dir": "./coverage"
48 },
49 "repository": {
50 "type": "git",
51 "url": "git+https://github.com/fresh8/copacetic.git"
52 },
53 "author": "Toby Coleman",
54 "license": "MIT",
55 "bugs": {
56 "url": "https://github.com/fresh8/copacetic/issues"
57 },
58 "homepage": "https://github.com/fresh8/copacetic#readme",
59 "devDependencies": {
60 "@types/node": "^6.0.78",
61 "chai": "^3.5.0",
62 "coveralls": "^2.13.1",
63 "ioredis": "3.x",
64 "jsdoc-to-markdown": "^4.0.1",
65 "mocha": "^3.4.2",
66 "mongodb-memory-server": "^2.4.3",
67 "mongoose": "5.x",
68 "nock": "^9.0.13",
69 "node-fetch": "1.x",
70 "nyc": "^11.0.1",
71 "sequelize": "4.x",
72 "sinon": "^2.3.6",
73 "standard": "^10.0.3"
74 },
75 "dependencies": {
76 "cluster-messages": "^1.1.2",
77 "codependency": "^2.0.1",
78 "human-interval": "^0.1.6",
79 "lodash.clonedeep": "^4.5.0",
80 "lodash.isobject": "^3.0.2",
81 "node-fetch": "^1.7.0",
82 "node-noop": "^1.0.0",
83 "precond": "^0.2.3"
84 },
85 "optionalPeerDependencies": {
86 "node-fetch": "1.x",
87 "mongodb": "3.x",
88 "mongoose": "5.x",
89 "ioredis": "3.x",
90 "sequelize": "4.x"
91 },
92 "typings": "copacetic.d.ts"
93}