Projekt

Obecné

Profil

Stáhnout (537 Bajtů) Statistiky
| Větev: | Revize:
1
{
2
	"name": "invert-kv",
3
	"version": "2.0.0",
4
	"description": "Invert the key/value of an object. Example: `{foo: 'bar'}` → `{bar: 'foo'}`",
5
	"license": "MIT",
6
	"repository": "sindresorhus/invert-kv",
7
	"author": {
8
		"name": "Sindre Sorhus",
9
		"email": "sindresorhus@gmail.com",
10
		"url": "sindresorhus.com"
11
	},
12
	"engines": {
13
		"node": ">=4"
14
	},
15
	"scripts": {
16
		"test": "xo && ava"
17
	},
18
	"files": [
19
		"index.js"
20
	],
21
	"keywords": [
22
		"object",
23
		"key",
24
		"value",
25
		"kv",
26
		"invert"
27
	],
28
	"devDependencies": {
29
		"ava": "*",
30
		"xo": "*"
31
	}
32
}
(3-3/4)