-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 KB
/
package.json
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": "base.logger",
"description": "base.logger is a basic logger module used throughout zest for logging",
"version": "0.0.1",
"main": "./lib/index",
"private": true,
"scripts": {
"test": "./node_modules/.bin/grunt test"
},
"license": "Unlicense",
"repository": {
"type": "git",
"url": "https://github.com/zest/base.logger.git"
},
"bugs": {
"url": "https://github.com/zest/base.logger/issues"
},
"maintainers": [
{
"name": "Pranav Jha",
"email": "[email protected]",
"web": "http://about.me/pranavjha"
}
],
"dependencies": {
"merge": "1.2.0",
"moment": "2.8.3",
"fs-extra": "0.12.0"
},
"devDependencies": {
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"base.gruntrunner": "zest/base.gruntrunner",
"chai": "1.9.1",
"sinon": "1.10.3",
"sinon-chai": "2.5.0",
"chai-as-promised": "4.1.1"
},
"directories": {
"lib": "lib",
"test": "test"
},
"config": {
"blanket": {
"pattern": "//^(?!.*/node_modules/).*/lib/"
}
}
}