Skip to content

Commit c473690

Browse files
committed
Updated travis to use g++-4.8
1 parent f0b5518 commit c473690

2 files changed

Lines changed: 57 additions & 46 deletions

File tree

.travis.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
language: node_js
2+
23
node_js:
34
- 0.10
45
- 0.12
56
- 4
67
- 6
8+
79
before_script: npm -g install testjs
10+
11+
env:
12+
- CXX=g++-4.8
13+
addons:
14+
apt:
15+
sources:
16+
- ubuntu-toolchain-r-test
17+
packages:
18+
- g++-4.8

package.json

Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,47 @@
11
{
2-
"name": "bcryptjs",
3-
"description": "Optimized bcrypt in plain JavaScript with zero dependencies. Compatible to 'bcrypt'.",
4-
"version": "2.4.0",
5-
"author": "Daniel Wirtz <dcode@dcode.io>",
6-
"contributors": [
7-
"Shane Girish <shaneGirish@gmail.com> (https://github.com/shaneGirish)",
8-
"Alex Murray <> (https://github.com/alexmurray)",
9-
"Nicolas Pelletier <> (https://github.com/NicolasPelletier)",
10-
"Josh Rogers <> (https://github.com/geekymole)",
11-
"Noah Isaacson <noah@nisaacson.com> (https://github.com/nisaacson)"
12-
],
13-
"repository": {
14-
"type": "url",
15-
"url": "https://github.com/dcodeIO/bcrypt.js.git"
16-
},
17-
"bugs": {
18-
"url": "https://github.com/dcodeIO/bcrypt.js/issues"
19-
},
20-
"keywords": [
21-
"bcrypt",
22-
"password",
23-
"auth",
24-
"authentication",
25-
"encryption",
26-
"crypt",
27-
"crypto"
28-
],
29-
"main": "index.js",
30-
"browser": "dist/bcrypt.js",
31-
"dependencies": {},
32-
"devDependencies": {
33-
"testjs": "~1",
34-
"closurecompiler": "~1",
35-
"metascript": "~0.18",
36-
"bcrypt": "latest",
37-
"utfx": "~1"
38-
},
39-
"license" : "MIT",
40-
"scripts": {
41-
"test": "node node_modules/testjs/bin/testjs",
42-
"build": "node scripts/build.js",
43-
"compile": "node node_modules/closurecompiler/bin/ccjs dist/bcrypt.js --compilation_level=ADVANCED_OPTIMIZATIONS --create_source_map=dist/bcrypt.min.map --externs=externs/minimal-env.js --output_wrapper=\"(function(){%output%})();\" > dist/bcrypt.min.js",
44-
"compress": "gzip -c -9 dist/bcrypt.min.js > dist/bcrypt.min.js.gz",
45-
"make": "npm run-script build && npm run-script compile && npm test"
46-
}
47-
}
2+
"name": "bcryptjs",
3+
"description": "Optimized bcrypt in plain JavaScript with zero dependencies. Compatible to 'bcrypt'.",
4+
"version": "2.4.0",
5+
"author": "Daniel Wirtz <dcode@dcode.io>",
6+
"contributors": [
7+
"Shane Girish <shaneGirish@gmail.com> (https://github.com/shaneGirish)",
8+
"Alex Murray <> (https://github.com/alexmurray)",
9+
"Nicolas Pelletier <> (https://github.com/NicolasPelletier)",
10+
"Josh Rogers <> (https://github.com/geekymole)",
11+
"Noah Isaacson <noah@nisaacson.com> (https://github.com/nisaacson)"
12+
],
13+
"repository": {
14+
"type": "url",
15+
"url": "https://github.com/dcodeIO/bcrypt.js.git"
16+
},
17+
"bugs": {
18+
"url": "https://github.com/dcodeIO/bcrypt.js/issues"
19+
},
20+
"keywords": [
21+
"bcrypt",
22+
"password",
23+
"auth",
24+
"authentication",
25+
"encryption",
26+
"crypt",
27+
"crypto"
28+
],
29+
"main": "index.js",
30+
"browser": "dist/bcrypt.js",
31+
"dependencies": {},
32+
"devDependencies": {
33+
"testjs": "~1",
34+
"closurecompiler": "~1",
35+
"metascript": "~0.18",
36+
"bcrypt": "latest",
37+
"utfx": "~1"
38+
},
39+
"license": "MIT",
40+
"scripts": {
41+
"test": "node node_modules/testjs/bin/testjs",
42+
"build": "node scripts/build.js",
43+
"compile": "node node_modules/closurecompiler/bin/ccjs dist/bcrypt.js --compilation_level=ADVANCED_OPTIMIZATIONS --create_source_map=dist/bcrypt.min.map --externs=externs/minimal-env.js --output_wrapper=\"(function(){%output%})();\" > dist/bcrypt.min.js",
44+
"compress": "gzip -c -9 dist/bcrypt.min.js > dist/bcrypt.min.js.gz",
45+
"make": "npm run-script build && npm run-script compile && npm test"
46+
}
47+
}

0 commit comments

Comments
 (0)