-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jan Krems
committed
Dec 28, 2015
1 parent
f358482
commit 3c704a4
Showing
12 changed files
with
61 additions
and
40 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 |
---|---|---|
@@ -1,6 +1,11 @@ | ||
# See: http://EditorConfig.org | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
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 |
---|---|---|
@@ -1 +1,3 @@ | ||
node_modules | ||
node_modules/ | ||
npm-debug.log | ||
/tmp |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
registry=https://registry.npmjs.org |
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 |
---|---|---|
@@ -1,5 +1,16 @@ | ||
language: node_js | ||
node_js: | ||
- 0.10 | ||
- 0.12 | ||
- iojs | ||
- '0.10' | ||
- '4' | ||
before_install: | ||
- npm install -g npm@latest-2 | ||
before_deploy: | ||
- git config --global user.email "[email protected]" | ||
- git config --global user.name "Groupon" | ||
deploy: | ||
provider: script | ||
script: './node_modules/.bin/nlm release' | ||
skip_cleanup: true | ||
on: | ||
branch: master | ||
node: '4' |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
// Generated by CoffeeScript 1.10.0 | ||
|
||
/* | ||
Copyright (c) 2014, Groupon, Inc. | ||
|
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
// Generated by CoffeeScript 1.10.0 | ||
|
||
/* | ||
Copyright (c) 2014, Groupon, Inc. | ||
|
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
// Generated by CoffeeScript 1.10.0 | ||
|
||
/* | ||
Copyright (c) 2014, Groupon, Inc. | ||
|
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 |
---|---|---|
|
@@ -2,43 +2,50 @@ | |
"name": "cson-parser", | ||
"version": "1.3.0", | ||
"description": "Safe parsing of CSON files", | ||
"license": "BSD-3-Clause", | ||
"main": "lib/cson-parser.js", | ||
"keywords": [ | ||
"cson", | ||
"parser" | ||
], | ||
"license": "BSD-2-Clause", | ||
"homepage": "https://github.com/groupon/cson-parser", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+ssh://[email protected]/groupon/cson-parser" | ||
}, | ||
"bugs": "https://github.com/groupon/cson-parser/issues", | ||
"scripts": { | ||
"build": "npub prep && coffee -cbo lib src", | ||
"prepublish": "rm -rf lib && npm run build", | ||
"build": "rm -rf lib && coffee --no-header -cbo lib src", | ||
"pretest": "npm run build", | ||
"test": "mocha", | ||
"posttest": "npub verify" | ||
"posttest": "nlm verify", | ||
"watch": "coffee --no-header -wcbo lib src & nodemon -w lib -w test -e coffee,js,json -x \"mocha\"" | ||
}, | ||
"author": { | ||
"name": "Jan Krems", | ||
"email": "<[email protected]>" | ||
"nlm": { | ||
"license": { | ||
"files": [ | ||
"src" | ||
] | ||
} | ||
}, | ||
"dependencies": { | ||
"coffee-script": "^1.10.0" | ||
}, | ||
"devDependencies": { | ||
"assertive": "^1.4.0", | ||
"assertive": "^2.0.0", | ||
"mocha": "^2.0.0", | ||
"npub": "^2.0.0" | ||
"nlm": "^2.0.0", | ||
"nodemon": "^1.0.0" | ||
}, | ||
"dependencies": { | ||
"coffee-script": "^1.9.0" | ||
"author": { | ||
"name": "Groupon", | ||
"email": "[email protected]" | ||
}, | ||
"keywords": [ | ||
"cson", | ||
"parser" | ||
], | ||
"files": [ | ||
"*.js", | ||
"lib" | ||
], | ||
"publishConfig": { | ||
"registry": "https://registry.npmjs.org", | ||
"license": { | ||
"exclude": [ | ||
"lib", | ||
"test" | ||
] | ||
} | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/groupon/cson-parser.git" | ||
}, | ||
"bugs": "https://github.com/groupon/cson-parser/issues" | ||
"registry": "https://registry.npmjs.org" | ||
} | ||
} |
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
--compilers coffee:coffee-script/register | ||
--compilers test.coffee:coffee-script/register | ||
--recursive |
File renamed without changes.
File renamed without changes.