site/node_modules/@citation-js/date/package.json
2024-10-14 08:09:33 +02:00

55 lines
1.4 KiB
JSON

{
"name": "@citation-js/date",
"version": "0.5.1",
"description": "Date parser and formatter",
"main": "lib/index.js",
"author": "Lars Willighagen",
"license": "MIT",
"bugs": {
"url": "https://github.com/citation-js/date/issues"
},
"homepage": "https://github.com/citation-js/date#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/citation-js/date.git"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/lib"
],
"nyc": {
"include": [
"src/**/*.js"
],
"sourceMap": false,
"instrument": false
},
"standard": {
"parser": "babel-eslint"
},
"scripts": {
"test": "mocha -r @babel/register -R spec test/*.spec.js",
"babel": "babel src -d lib --copy-files",
"lint": "standard",
"coverage": "NODE_ENV=test nyc npm test",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"version": "npm run changelog",
"prepublishOnly": "npm run babel",
"preversion": "npm run lint && npm run test"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-istanbul": "^6.0.0",
"conventional-changelog-cli": "^2.1.1",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"standard": "^16.0.3"
}
}