forked from johnraber/kraken-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add specific package.json for with.bcp47Locale
- Loading branch information
Aria Stewart
committed
Jun 30, 2014
1 parent
324b090
commit 96a6cf8
Showing
3 changed files
with
67 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,4 @@ | |
**/*.log | ||
node_modules/ | ||
**/node_modules | ||
**/package.json | ||
*/**/.DS_Store |
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 |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"name": "kraken-examples-with.bcp47Locale", | ||
"version": "0.1.0", | ||
"description": "Example of using a BCP-47 style locale selection with Kraken", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/krakenjs/kraken-examples" | ||
}, | ||
"keywords": [ | ||
"express", | ||
"kraken", | ||
"kraken-js", | ||
"krakenjs", | ||
"examples" | ||
], | ||
"author": "Jeff Harrell <jeharrell@paypal.com>", | ||
"contributors": [ | ||
{ | ||
"name": "Poornima Venkatakrishnan", | ||
"email": "pvenkatakrishnan@paypal.com" | ||
}, | ||
{ | ||
"name": "Matt Edelman", | ||
"email": "medelman@paypal.com" | ||
}, | ||
{ | ||
"name": "Aria Stewart", | ||
"email": "ariastewart@paypal.com" | ||
} | ||
], | ||
"scripts": { | ||
"start": "node index.js" | ||
}, | ||
"license": "Apache 2.0", | ||
"bugs": { | ||
"url": "https://github.com/krakenjs/kraken-examples/issues" | ||
}, | ||
"homepage": "https://github.com/krakenjs/kraken-examples", | ||
"dependencies": { | ||
"adaro": "~0.1.5", | ||
"debuglog": "^1.0.1", | ||
"dustjs-helpers": "~1.2.0", | ||
"dustjs-linkedin": "~2.3.4", | ||
"engine-munger": "^0.2.0", | ||
"express": "^4.3.0", | ||
"kraken-devtools": "^1.0.0", | ||
"kraken-js": "^1.0.1", | ||
"less": "~1.7.0", | ||
"localeresolver": "^0.1.1", | ||
"localizr": "~0.1.0" | ||
}, | ||
"devDependencies": { | ||
"mocha": "^1.18.0", | ||
"supertest": "^0.9.0", | ||
"grunt-dustjs": "^1.2.1", | ||
"grunt-contrib-clean": "^0.5.0", | ||
"grunt-config-dir": "^0.3.2", | ||
"grunt-copy-to": "0.0.10", | ||
"grunt-localizr": "^0.1.0", | ||
"grunt-contrib-jshint": "^0.6.5", | ||
"grunt": "^0.4.4", | ||
"grunt-contrib-less": "^0.9.0", | ||
"grunt-mocha-cli": "^1.7.0" | ||
} | ||
} |