Hong-Phuc Bui
2025-01-16 2889de7f0c2d587a17fbd322af57c29e84238620
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
43
44
45
{
  "name": "calendar",
  "version": "0.0.1",
  "description": "This project is a nice example to demonstrate DOM, CSS and some aspects of Design.",
  "scripts": {
    "build": "npx parcel build src/*.html --public-url ./",
    "serve": "npx parcel serve src/*.html",
    "clean": "rm -rf .parcel-cache; rm -rf dist; rm -rf coverage .nyc_output",
    "clean-all": "npm run clean; rm -rf node_modules package-lock.json",
    "test": "npx nyc ava",
    "doc": "npx documentation build src/**/*.js -f html -o docs"
  },
  "author": "Hong-Phuc Bui",
  "license": "MIT",
  "devDependencies": {
    "ava": "^3.13.0",
    "documentation": "^14.0.0",
    "esdoc": "^1.1.0",
    "esdoc-standard-plugin": "^1.0.0",
    "esm": "^3.2.25",
    "nyc": "^14.1.1",
    "parcel": "^2.8.0"
  },
  "nyc": {
    "require": [
      "esm"
    ],
    "reporter": [
      "text-summary",
      "lcov",
      "html"
    ],
    "exclude": [
      "docs"
    ]
  },
  "ava": {
    "require": [
      "esm"
    ],
    "files": [
      "test/**/*"
    ]
  }
}