fs-mktemp
Version:
`mktemp` command for Node.js
50 lines (49 loc) • 1.22 kB
JSON
{
"name": "fs-mktemp",
"version": "1.1.3",
"description": "`mktemp` command for Node.js",
"main": "lib/",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"release:patch": "npm version patch",
"release:minor": "npm version minor",
"release:major": "npm version major",
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "semistandard \"lib/**/*.js\" --fix",
"mocha": "mocha ./test/**/*.test.js",
"test": "npm run lint && nyc npm run mocha"
},
"keywords": [
"fs",
"mktemp",
"temp"
],
"repository": "honzahommer/node-fs-mktemp",
"author": "Honza Hommer <honza@homer.cz>",
"homepage": "https://github.com/honzahommer/node-fs-mktemp#README",
"license": "MIT",
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"semistandard": {
"env": [
"mocha"
]
},
"dependencies": {
"universalify": "^0.1.2"
},
"devDependencies": {
"chai": "^4.2.0",
"husky": "^3.0.0",
"mocha": "^6.0.2",
"nyc": "^14.0.0",
"semistandard": "^13.0.1"
}
}