-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
41 lines (41 loc) · 824 Bytes
/
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
38
39
40
41
{
"name": "prepend-file",
"version": "2.0.1",
"description": "Prepend data to a file, creating it if it doesn't exist.",
"repository": "https://github.com/hemanth/node-prepend-file.git",
"author": {
"name": "Hemanth.HM",
"email": "hemanth.hm@gmail.com",
"url": "http://h3manth.com"
},
"license": "MIT",
"main": "index.js",
"files": [
"index.js",
"index.d.ts"
],
"engines": {
"node": "^10.17 || >=11.14"
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "xo && nyc ava"
},
"keywords": [
"fs",
"file",
"prepend"
],
"dependencies": {
"temp-write": "^5.0.0"
},
"devDependencies": {
"ava": "^3.11.0",
"coveralls": "^3.1.0",
"nyc": "^15.1.0",
"xo": "^0.32.1"
},
"xo": {
"space": 2
}
}