@zishone/dotnotate
Version:
A utility function to convert JSON objects to dotnotation
74 lines (73 loc) • 2.24 kB
JSON
{
"name": "@zishone/dotnotate",
"version": "0.1.3",
"description": "A utility function to convert JSON objects to dotnotation",
"main": "dist/index.js",
"files": [
"dist"
],
"directories": {
"test": "tests"
},
"scripts": {
"cleanup": "rimraf dist && rimraf coverage && rimraf .nyc_output && rimraf docs",
"lint": "eslint ./src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"build": "tsc",
"build:watch": "tsc --watch",
"docs": "typedoc --out docs --mode modules --tsconfig tsconfig.json src && touch docs/.nojekyll",
"docs:deploy": "npm run docs && gh-pages --dotfiles --dist docs",
"test": "mocha --require ts-node/register --require source-map-support/register --file tests/index.ts tests/**/*.test.ts --exit",
"test:coverage": "nyc --require @istanbuljs/nyc-config-typescript --reporter lcov --include src npm run test",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zishone/dotnotate.git"
},
"keywords": [
"dot",
"notate",
"notation",
"dotnotation",
"dot-notation",
"dot-notate",
"dotnotate"
],
"author": "Zishran Garces <zishgarces@gmail.com> (https://github.com/zishone)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zishone/dotnotate/issues"
},
"homepage": "https://github.com/zishone/dotnotate#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/bson": "^4.0.3",
"@types/chai": "^4.2.11",
"@types/express": "^4.17.6",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.32",
"@types/sinon": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"chai": "^4.2.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"gh-pages": "^2.2.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sinon": "^9.2.1",
"source-map-support": "^0.5.19",
"ts-node": "^8.10.1",
"typedoc": "^0.17.6",
"typescript": "^3.9.7"
},
"dependencies": {
"bson": "^4.2.2"
}
}