{ "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/**/*" ] } }