-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.06 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
{
"author": "Steve Wagner (ciroque)",
"dependencies": {
"node-extend": "^0.2.0",
"nodeunit": "^0.10.2",
"typings": "^1.3.3",
"uglify-js": "^2.7.3"
},
"description": "Simple application configuration utility that loads configuration values from a .json-formatted file and allows overrides to be provided via environment variables.",
"directories": {
"lib": "lib",
"test": "test",
"unit_tests": "test/unit",
"test_assets": "test/unit/assets"
},
"engines": {
"node": ">=0.8.2"
},
"keywords": [
"node.js",
"conf",
"configuration",
"settings",
"environment",
"json"
],
"license": "BSD",
"main": "index.js",
"name": "n-app-conf",
"repository": {
"type": "git",
"url": "git://github.com/ciroque/n-app-conf.git"
},
"scripts": {
"build": "tsc",
"minify": "node_modules/.bin/uglifyjs dist/n-app-conf.js -c -m -o dist/n-app-conf.min.js",
"postinstall": "typings install",
"test": "nodeunit test/unit/n-app-conf-fixture.js",
"typings": "typings install"
},
"version": "0.1.0"
}