-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1009 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1009 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
34
35
{
"name": "object-handler",
"version": "0.0.5",
"description": "A simple object handler for handling objects. Allows searching for required properties and things of that nature. Works really well with requests in express.",
"main": "index.js",
"scripts": {
"test": "mocha test",
"cover": "istanbul cover _mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theinfamousrj/objecthandler.git"
},
"keywords": [
"object",
"handler",
"required",
"parameters",
"node"
],
"author": "Raymond John Hill <raymondjohnhill@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/theinfamousrj/objecthandler/issues"
},
"homepage": "https://github.com/theinfamousrj/objecthandler#readme",
"devDependencies": {
"chai": "*",
"coveralls": "*",
"istanbul": "*",
"mocha": "*",
"mocha-lcov-reporter": "*"
}
}