aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: c658c627a6d79df0fdd6ff8d47fe5d05680c3742 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
  "name": "grafn",
  "version": "1.0.2",
  "description": "Graph + Fn: Execute functions as a graph",
  "main": "lib/grafn",
  "scripts": {
    "document": "jsdoc2md lib/**/*.js > doc/README.md; tap -R markdown > doc/COVERAGE.md",
    "lint": "eslint .",
    "test": "tap",
    "coverage": "nyc report --reporter=text-lcov > lcov.info"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@gitlab.com/rbdr/grafn.git"
  },
  "bugs": {
    "url": "https://gitlab.com/rbdr/grafn/issues"
  },
  "author": "Rubén Beltrán del Río <ruben@unlimited.pizza>",
  "license": "Apache-2.0",
  "devDependencies": {
    "@hapi/eslint-config-hapi": "^13.0.2",
    "@hapi/eslint-plugin-hapi": "^4.3.6",
    "eslint": "^7.9.0",
    "jsdoc-to-markdown": "^6.0.1",
    "tap": "^14.10.8"
  },
  "keywords": [
    "graph",
    "async",
    "flow"
  ],
  "files": [
    "lib/"
  ]
}