-
Notifications
You must be signed in to change notification settings - Fork 157
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
1 parent
0fbadd6
commit cd35cc2
Showing
12 changed files
with
774 additions
and
1,115,256 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = tab | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[{README.md,package.json,.travis.yml}] | ||
indent_style = space | ||
indent_size = 2 |
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,22 +1,5 @@ | ||
language: node_js | ||
node_js: | ||
- "0.10" | ||
- "0.12" | ||
- "iojs" | ||
before_script: | ||
- "npm install -g grunt-cli" | ||
# Narwhal uses a hardcoded path to openjdk v6, so use that version | ||
- "sudo apt-get update -qq" | ||
- "sudo apt-get install -qq openjdk-6-jre" | ||
- "PACKAGE=rhino1_7R5; wget https://github.com/mozilla/rhino/releases/download/Rhino1_7R5_RELEASE/$PACKAGE.zip && sudo unzip $PACKAGE -d /opt/ && rm $PACKAGE.zip" | ||
- "PACKAGE=rhino1_7R5; echo -e '#!/bin/sh\\njava -jar /opt/'$PACKAGE'/js.jar $@' | sudo tee /usr/local/bin/rhino && sudo chmod +x /usr/local/bin/rhino" | ||
- "PACKAGE=ringojs-0.9; wget http://ringojs.org/downloads/$PACKAGE.zip && sudo unzip $PACKAGE -d /opt/ && rm $PACKAGE.zip" | ||
- "PACKAGE=ringojs-0.9; sudo ln -s /opt/$PACKAGE/bin/ringo /usr/local/bin/ringo && sudo chmod +x /usr/local/bin/ringo" | ||
- "PACKAGE=v0.3.2; wget https://github.com/280north/narwhal/archive/$PACKAGE.zip && sudo unzip $PACKAGE -d /opt/ && rm $PACKAGE.zip" | ||
- "PACKAGE=narwhal-0.3.2; sudo ln -s /opt/$PACKAGE/bin/narwhal /usr/local/bin/narwhal && sudo chmod +x /usr/local/bin/narwhal" | ||
# If the enviroment stores rt.jar in a different directory, find it and symlink the directory | ||
- "PREFIX=/usr/lib/jvm; if [ ! -d $PREFIX/java-6-openjdk ]; then for d in $PREFIX/java-6-openjdk-*; do if [ -e $d/jre/lib/rt.jar ]; then sudo ln -s $d $PREFIX/java-6-openjdk; break; fi; done; fi" | ||
script: | ||
- "grunt ci" | ||
- 6 | ||
after_script: | ||
- "grunt shell:cover-coveralls" | ||
- 'istanbul cover --report html node_modules/.bin/_mocha tests -- -u exports -R spec && codecov' |
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,60 +1,51 @@ | ||
{ | ||
"name": "punycode", | ||
"version": "1.4.1", | ||
"description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", | ||
"homepage": "https://mths.be/punycode", | ||
"main": "punycode.js", | ||
"keywords": [ | ||
"punycode", | ||
"unicode", | ||
"idn", | ||
"idna", | ||
"dns", | ||
"url", | ||
"domain" | ||
], | ||
"license": "MIT", | ||
"author": { | ||
"name": "Mathias Bynens", | ||
"url": "https://mathiasbynens.be/" | ||
}, | ||
"contributors": [ | ||
{ | ||
"name": "Mathias Bynens", | ||
"url": "https://mathiasbynens.be/" | ||
}, | ||
{ | ||
"name": "John-David Dalton", | ||
"url": "http://allyoucanleet.com/" | ||
} | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/bestiejs/punycode.js.git" | ||
}, | ||
"bugs": "https://github.com/bestiejs/punycode.js/issues", | ||
"files": [ | ||
"LICENSE-MIT.txt", | ||
"punycode.js" | ||
], | ||
"scripts": { | ||
"test": "node tests/tests.js" | ||
}, | ||
"devDependencies": { | ||
"coveralls": "^2.11.4", | ||
"grunt": "^0.4.5", | ||
"grunt-contrib-uglify": "^0.11.0", | ||
"grunt-shell": "^1.1.2", | ||
"istanbul": "^0.4.1", | ||
"qunit-extras": "^1.4.4", | ||
"qunitjs": "~1.11.0", | ||
"requirejs": "^2.1.22" | ||
}, | ||
"jspm": { | ||
"map": { | ||
"./punycode.js": { | ||
"node": "@node/punycode" | ||
} | ||
} | ||
} | ||
"name": "punycode", | ||
"version": "1.4.1", | ||
"description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", | ||
"homepage": "https://mths.be/punycode", | ||
"main": "punycode.js", | ||
"keywords": [ | ||
"punycode", | ||
"unicode", | ||
"idn", | ||
"idna", | ||
"dns", | ||
"url", | ||
"domain" | ||
], | ||
"license": "MIT", | ||
"author": { | ||
"name": "Mathias Bynens", | ||
"url": "https://mathiasbynens.be/" | ||
}, | ||
"contributors": [ | ||
{ | ||
"name": "Mathias Bynens", | ||
"url": "https://mathiasbynens.be/" | ||
} | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/bestiejs/punycode.js.git" | ||
}, | ||
"bugs": "https://github.com/bestiejs/punycode.js/issues", | ||
"files": [ | ||
"LICENSE-MIT.txt", | ||
"punycode.js" | ||
], | ||
"scripts": { | ||
"test": "mocha tests" | ||
}, | ||
"devDependencies": { | ||
"codecov": "^1.0.1", | ||
"istanbul": "^0.4.1", | ||
"mocha": "^2.5.3" | ||
}, | ||
"jspm": { | ||
"map": { | ||
"./punycode.js": { | ||
"node": "@node/punycode" | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.