This repository was archived by the owner on May 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.76 KB
/
package.json
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
{
"name": "fs-file-sync-fd",
"version": "0.1.0",
"description": "Backported version of fs.readFileSync, fs.writeFileSync, and fs.appendFileSync which accept file descriptor arguments for synchronously reading and writing to open file descriptors.",
"keywords": [
"backport",
"file",
"fs",
"sync"
],
"license": "MIT",
"homepage": "https://github.com/kevinoid/fs-file-sync-fd",
"bugs": "https://github.com/kevinoid/fs-file-sync-fd/issues",
"author": "Kevin Locke <kevin@kevinlocke.name>",
"repository": {
"type": "git",
"url": "https://github.com/kevinoid/fs-file-sync-fd.git"
},
"main": "index.js",
"//": "All scripts should run in POSIX sh and Windows cmd.exe",
"scripts": {
"lint": "eslint . && echo ESLint passed.",
"postpublish": "git push --follow-tags origin master gh-pages && echo Remember to update GitHub Releases from CHANGELOG.md && echo until skywinder/github-changelog-generator#56 is fixed.",
"preversion": "depcheck --ignores eslint-plugin-import --ignore-dirs doc && david -i eslint && git-branch-is master && travis-status -b master -c -wx && appveyor-status -b master -c -w -p kevinoid/fs-file-sync-fd",
"test": "npm run lint && npm run test-unit",
"test-unit": "python tools/test.py --mode=release parallel -J",
"version": "github_changelog_generator -t \"$npm_config_gcg_github_token\" --future-release \"$npm_package_version\" && echo && echo === Please edit CHANGELOG.md as desired, then exit === && echo && $npm_config_shell && git commit -m \"Update CHANGELOG.md for $npm_package_version\" CHANGELOG.md",
"version-deps": "npm install david depcheck git-branch-is travis-status"
},
"dependencies": {},
"devDependencies": {
"eslint": "^1.0.0"
},
"engines": {
"node": ">=0.10"
}
}