-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.5 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.5 KB
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
36
37
38
39
40
41
42
43
44
45
{
"name": "argwrap",
"author": "NexusTools <contact@nexustools.com>",
"contributors": [
{
"name": "Katelyn Slater",
"email": "ktaeyln@gmail.com"
}
],
"homepage": "https://www.nexustools.net/nodejs/argwrap",
"version": "0.0.4",
"license": "Apache-2.0",
"description": "Scans a given argument and detects its arguments, than maps those onto an object through a wrapper function which can be called whenever. Makes it easy to provide plugins that have a dynamic order or set of arguments with multiple names.",
"keywords": [
"names",
"NexusTools",
"arguments",
"dynamic",
"wrap"
],
"bugs": {
"url": "https://github.com/NexusTools/node-argwrap/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/NexusTools/node-argwrap.git"
},
"preferGlobal": true,
"main": "index",
"scripts": {
"test": "mocha --bail --reporter spec --check-leaks test/",
"test-coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --require test/support/env --bail --reporter spec test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
},
"engines": {
"node": ">=0.10.16",
"npm": ">=1.3.8"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^8.0.34",
"istanbul": "^0.3.2",
"mocha": "^2.0.1"
}
}