summaryrefslogtreecommitdiff
path: root/package.json
blob: 426fe105996ce4dcc314f923af309373f8818abc (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
37
38
39
40
41
42
{
  "name": "flatmatter",
  "version": "1.1.2",
  "description": "A data serialization language, and library, with support for functions.",
  "author": "Asko Nõmm <asko@nmm.ee> (https://nmm.ee)",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "type": "module",
  "license": "MIT",
  "keywords": [
    "configuration",
    "dsl",
    "serialization",
    "data"
  ],
  "bugs": {
    "url": "https://github.com/askonomm/flatmatter/issues",
    "email": "asko@nmm.ee"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/askonomm/flatmatter.git"
  },
  "scripts": {
    "bundle": "tsup src/index.ts",
    "test": "vitest",
    "coverage": "vitest run --coverage"
  },
  "engines": {
    "node": ">=18"
  },
  "devDependencies": {
    "@vitest/coverage-istanbul": "^2.1.8",
    "@vitest/coverage-v8": "^2.1.8",
    "@vitest/ui": "^2.1.8",
    "tsup": "^8.3.5",
    "typescript": "^5.7.3",
    "@types/node": "^22.10.10",
    "vite": "^5.4.11",
    "vitest": "^2.1.8"
  }
}