42 lines
714 B
JSON
42 lines
714 B
JSON
{
|
|
"name": "option-chain",
|
|
"version": "1.0.0",
|
|
"description": "Use fluent property chains in lieu of options objects",
|
|
"license": "MIT",
|
|
"repository": "avajs/option-chain",
|
|
"author": {
|
|
"name": "James Talmage",
|
|
"email": "james@talmage.io",
|
|
"url": "github.com/jamestalmage"
|
|
},
|
|
"engines": {
|
|
"node": ">=4"
|
|
},
|
|
"scripts": {
|
|
"test": "xo && nyc ava"
|
|
},
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"keywords": [
|
|
"option",
|
|
"options",
|
|
"chain",
|
|
"chains",
|
|
"chainable",
|
|
"fluent"
|
|
],
|
|
"devDependencies": {
|
|
"ava": "^0.19.1",
|
|
"coveralls": "^2.11.6",
|
|
"nyc": "^10.3.2",
|
|
"xo": "^0.18.2"
|
|
},
|
|
"nyc": {
|
|
"reporter": [
|
|
"lcov",
|
|
"text"
|
|
]
|
|
}
|
|
}
|