Skip to content

Commit c962bfe

Browse files
committedMar 18, 2018
updated deps. remove support for node < 6
1 parent b8c7671 commit c962bfe

File tree

3 files changed

+6161
-22
lines changed

3 files changed

+6161
-22
lines changed
 

‎.travis.yml

+14-18
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,10 @@ sudo: false
33
language: node_js
44

55
node_js:
6-
- '0.10'
7-
- '0.12'
8-
- '1'
9-
- '2'
10-
- '3'
11-
- '4'
12-
- '5'
136
- '6'
7+
- '7'
8+
- '8'
9+
- '9'
1410

1511
env:
1612
global:
@@ -19,25 +15,25 @@ env:
1915

2016
matrix:
2117
include:
22-
- node_js: '0.10'
18+
- node_js: '6'
2319
env: BROWSER_NAME=chrome BROWSER_VERSION=latest
24-
- node_js: '0.10'
20+
- node_js: '6'
2521
env: BROWSER_NAME=chrome BROWSER_VERSION=29
26-
- node_js: '0.10'
22+
- node_js: '6'
2723
env: BROWSER_NAME=firefox BROWSER_VERSION=latest
28-
- node_js: '0.10'
24+
- node_js: '6'
2925
env: BROWSER_NAME=opera BROWSER_VERSION=latest
30-
- node_js: '0.10'
26+
- node_js: '6'
3127
env: BROWSER_NAME=safari BROWSER_VERSION=latest
32-
- node_js: '0.10'
28+
- node_js: '6'
3329
env: BROWSER_NAME=safari BROWSER_VERSION=7
34-
- node_js: '0.10'
30+
- node_js: '6'
3531
env: BROWSER_NAME=safari BROWSER_VERSION=6
36-
- node_js: '0.10'
32+
- node_js: '6'
3733
env: BROWSER_NAME=safari BROWSER_VERSION=5
38-
- node_js: '0.10'
34+
- node_js: '6'
3935
env: BROWSER_NAME=ie BROWSER_VERSION=11
40-
- node_js: '0.10'
36+
- node_js: '6'
4137
env: BROWSER_NAME=ie BROWSER_VERSION=10
42-
- node_js: '0.10'
38+
- node_js: '6'
4339
env: BROWSER_NAME=ie BROWSER_VERSION=9

‎package-lock.json

+6,140
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+7-4
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,20 @@
2525
],
2626
"main": "index.js",
2727
"dependencies": {
28-
"base64-js": "1.2.0",
29-
"xmlbuilder": "8.2.2",
28+
"base64-js": "^1.2.3",
29+
"xmlbuilder": "^9.0.7",
3030
"xmldom": "0.1.x"
3131
},
3232
"devDependencies": {
33-
"browserify": "^14.3.0",
34-
"mocha": "^3.3.0",
33+
"browserify": "^16.1.1",
34+
"mocha": "^5.0.4",
3535
"multiline": "^1.0.2",
3636
"zuul": "^3.10.1"
3737
},
3838
"scripts": {
3939
"test": "make test"
40+
},
41+
"engines": {
42+
"node": ">=6"
4043
}
4144
}

0 commit comments

Comments
 (0)
Please sign in to comment.