-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from aredridel/use-position-tracking-json-parser
Use load-jsonic-sync to load json with comments and report position and filename in error messages
- Loading branch information
Showing
8 changed files
with
39 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,23 +4,23 @@ | |
"description": "Environment-aware configuration.", | ||
"main": "dist/index.js", | ||
"directories": { | ||
"test": "test", | ||
"dist": "dist" | ||
"dist": "dist", | ||
"test": "test" | ||
}, | ||
"scripts": { | ||
"compile": "babel --optional runtime --modules common --out-dir dist index.js lib/**.js", | ||
"cover": "npm run compile && nyc tap test/**/*-test.js && nyc report -r html", | ||
"prepublish": "npm run compile", | ||
"test": "npm run compile && babel-node test/harness.js test/**/*-test.js", | ||
"cover": "npm run compile && babel-node node_modules/.bin/istanbul cover test/harness.js test/**/*-test.js" | ||
"test": "npm run compile && tap test/**/*-test.js" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/krakenjs/confit.git" | ||
}, | ||
"keywords": [ | ||
"application", | ||
"configuration", | ||
"config" | ||
"config", | ||
"configuration" | ||
], | ||
"author": "Erik Toth <[email protected]>", | ||
"licenses": [ | ||
|
@@ -35,17 +35,18 @@ | |
"glob": "^4.3.5", | ||
"istanbul": "^0.3.5", | ||
"jshint": "^2.6.0", | ||
"tape": "^3.5.0" | ||
"nyc": "^3.0.1", | ||
"tap": "^1.3.1" | ||
}, | ||
"dependencies": { | ||
"async": "^0.9.0", | ||
"babel-runtime": "4.7.3", | ||
"caller": "^1.0.0", | ||
"core-util-is": "^1.0.1", | ||
"debuglog": "^1.0.1", | ||
"load-jsonic-sync": "^1.0.0", | ||
"minimist": "^1.1.0", | ||
"shortstop": "^1.0.1", | ||
"shortstop-handlers": "^1.0.0", | ||
"shush": "^1.0.0" | ||
"shortstop-handlers": "^1.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters