-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 941 Bytes
/
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
{
"name": "config-general",
"version": "0.2.0",
"description": "A Node.js version of the Perl Config::General module that attempts to be API, feature and bug compatible with the original",
"main": "index.js",
"keywords": [
"config file",
"apache config",
"Config::General"
],
"dependencies": {
"glob": ">= 4.0.3",
"iconv": ">=2.3.0",
"node-icu-charset-detector": ">=0.2.0"
},
"devDependencies": {
"tap": "^0.4.11"
},
"directories": {
"lib": "./lib"
},
"os": [
"!win32"
],
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "tap --harmony t/*.js"
},
"repository": {
"type": "git",
"url": "[email protected]:dshadowwolf/config-general.git"
},
"author": "Daniel Hazelton",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/dshadowwolf/config-general/issues"
},
"homepage": "https://github.com/dshadowwolf/config-general"
}