package.json
 1  {
 2    "name": "write-file-atomic",
 3    "version": "3.0.3",
 4    "description": "Write files in an atomic fashion w/configurable ownership",
 5    "main": "index.js",
 6    "scripts": {
 7      "test": "tap",
 8      "posttest": "npm run lint",
 9      "lint": "standard",
10      "postlint": "rimraf chowncopy good nochmod nochown nofsync nofsyncopt noopen norename \"norename nounlink\" nowrite",
11      "preversion": "npm test",
12      "postversion": "npm publish",
13      "prepublishOnly": "git push origin --follow-tags"
14    },
15    "repository": {
16      "type": "git",
17      "url": "git://github.com/npm/write-file-atomic.git"
18    },
19    "keywords": [
20      "writeFile",
21      "atomic"
22    ],
23    "author": "Rebecca Turner <me@re-becca.org> (http://re-becca.org)",
24    "license": "ISC",
25    "bugs": {
26      "url": "https://github.com/npm/write-file-atomic/issues"
27    },
28    "homepage": "https://github.com/npm/write-file-atomic",
29    "dependencies": {
30      "imurmurhash": "^0.1.4",
31      "is-typedarray": "^1.0.0",
32      "signal-exit": "^3.0.2",
33      "typedarray-to-buffer": "^3.1.5"
34    },
35    "devDependencies": {
36      "mkdirp": "^0.5.1",
37      "require-inject": "^1.4.4",
38      "rimraf": "^2.6.3",
39      "standard": "^14.3.1",
40      "tap": "^14.10.6"
41    },
42    "files": [
43      "index.js"
44    ],
45    "tap": {
46      "100": true
47    }
48  }