-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 742 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 742 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
{
"name": "funs",
"version": "0.1.0",
"description": "function building library that provides argument parsing and sanitization",
"keywords": ["arguments", "parser", "functions"],
"main": "./src/funs",
"author": {
"name": "Sean Copenhaver",
"email": "sean.copenhaver@gmail.com"
},
"dependencies": {
},
"devDependencies": {
"mocha": "1.7",
"chai": "1.4"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha"
},
"license": "Apache 2.0",
"repository": {
"type": "git",
"url": "http://github.com/copenhas/funs.git"
},
"bugs": { "url": "https://github.com/copenhas/funs/issues" },
"engines": { "node": ">=0.8.8" }
}