-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.2 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.2 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
46
47
48
{
"name": "options-api",
"version": "1.1.0",
"description": "Option getter/setter/validator for Node.js modules and apps",
"main": "index.js",
"scripts": {
"test": "node_modules/mocha/bin/mocha --reporter dot",
"spec": "node_modules/mocha/bin/mocha --reporter spec",
"cover": "istanbul cover node_modules/.bin/_mocha -- --reporter dot",
"lint": "eslint index.js lib test"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/AgentiaSystems/options-api.git"
},
"keywords": [
"option",
"options",
"get",
"set",
"validate",
"node"
],
"author": "Johnny Estilles <johnny.estilles@agentia.asia> (http://www.agentia.asia)",
"license": "MIT",
"bugs": {
"url": "https://github.com/AgentiaSystems/options-api/issues"
},
"homepage": "https://github.com/AgentiaSystems/options-api",
"devDependencies": {
"chai": "^2.3.0",
"eslint": "^0.21.2",
"istanbul": "^0.3.14",
"mocha": "^2.2.5",
"pre-commit": "^1.0.7",
"sinon": "^1.14.1",
"sinon-chai": "^2.7.0"
},
"dependencies": {
"agentia-utilities": "^1.5.0",
"clone": "^1.0.2",
"merge-descriptors": "^1.0.0"
}
}