42 lines
708 B
JSON
42 lines
708 B
JSON
{
|
|
"name": "write-pkg",
|
|
"version": "2.1.0",
|
|
"description": "Write a package.json file",
|
|
"license": "MIT",
|
|
"repository": "sindresorhus/write-pkg",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "sindresorhus.com"
|
|
},
|
|
"engines": {
|
|
"node": ">=4"
|
|
},
|
|
"scripts": {
|
|
"test": "xo && ava"
|
|
},
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"keywords": [
|
|
"json",
|
|
"write",
|
|
"stringify",
|
|
"file",
|
|
"fs",
|
|
"graceful",
|
|
"pkg",
|
|
"package"
|
|
],
|
|
"dependencies": {
|
|
"sort-keys": "^1.1.2",
|
|
"write-json-file": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "*",
|
|
"read-pkg": "^2.0.0",
|
|
"tempfile": "^1.1.1",
|
|
"xo": "*"
|
|
}
|
|
}
|