| 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
 | | { |  |   "name": "aproba", |  |   "version": "1.2.0", |  |   "description": "A ridiculously light-weight argument validator (now browser friendly)", |  |   "main": "index.js", |  |   "directories": { |  |     "test": "test" |  |   }, |  |   "dependencies": {}, |  |   "devDependencies": { |  |     "standard": "^10.0.3", |  |     "tap": "^10.0.2" |  |   }, |  |   "files": [ |  |     "index.js" |  |   ], |  |   "scripts": { |  |     "test": "standard && tap -j3 test/*.js" |  |   }, |  |   "repository": { |  |     "type": "git", |  |     "url": "https://github.com/iarna/aproba" |  |   }, |  |   "keywords": [ |  |     "argument", |  |     "validate" |  |   ], |  |   "author": "Rebecca Turner <me@re-becca.org>", |  |   "license": "ISC", |  |   "bugs": { |  |     "url": "https://github.com/iarna/aproba/issues" |  |   }, |  |   "homepage": "https://github.com/iarna/aproba" |  | } | 
 |