-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 734 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 734 Bytes
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
{
"name": "musthave",
"version": "1.0.2",
"description": "A minimal utility module to throw errors when an object does not contain \"must have\" keys.",
"main": "index.js",
"scripts": {
"test": "mocha --ui tdd test"
},
"repository": {
"type": "git",
"url": "http://github.com/coreybutler/musthave.git"
},
"keywords": [
"must",
"have",
"object",
"require",
"key",
"value"
],
"author": "Corey Butler <corey@coreybutler.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/coreybutler/musthave/issues"
},
"homepage": "https://github.com/coreybutler/musthave",
"dependencies": {
"chalk": "^2.4.1"
},
"devDependencies": {
"mocha": "^5.2.0"
}
}