mirror of https://github.com/jkjoy/sunpeiwen.git
33 lines
537 B
JSON
33 lines
537 B
JSON
|
{
|
||
|
"name": "invert-kv",
|
||
|
"version": "2.0.0",
|
||
|
"description": "Invert the key/value of an object. Example: `{foo: 'bar'}` → `{bar: 'foo'}`",
|
||
|
"license": "MIT",
|
||
|
"repository": "sindresorhus/invert-kv",
|
||
|
"author": {
|
||
|
"name": "Sindre Sorhus",
|
||
|
"email": "sindresorhus@gmail.com",
|
||
|
"url": "sindresorhus.com"
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": ">=4"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"test": "xo && ava"
|
||
|
},
|
||
|
"files": [
|
||
|
"index.js"
|
||
|
],
|
||
|
"keywords": [
|
||
|
"object",
|
||
|
"key",
|
||
|
"value",
|
||
|
"kv",
|
||
|
"invert"
|
||
|
],
|
||
|
"devDependencies": {
|
||
|
"ava": "*",
|
||
|
"xo": "*"
|
||
|
}
|
||
|
}
|