Skip to content

Commit beb46d6

Browse files
authored
Removed node 6, updated dependencies (#177)
1 parent bd0679e commit beb46d6

File tree

3 files changed

+12
-17
lines changed

3 files changed

+12
-17
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ os:
44
- windows
55
- linux
66
node_js:
7-
- '6'
87
- '8'
98
- '10'
9+
- '12'
1010

1111
notifications:
1212
email:

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ pool:
33

44
strategy:
55
matrix:
6-
node_6_x:
7-
node_version: 6.x
86
node_8_x:
97
node_version: 8.x
108
node_10_x:
119
node_version: 10.x
1210
node_11_x:
1311
node_version: 11.x
12+
node_12_x:
13+
node_version: 12.x
1414

1515
steps:
1616
- task: NodeTool@0

package.json

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"benchmark": "node bench.js",
99
"test:lint": "standard",
1010
"test:typescript": "tsc --project ./test/types/tsconfig.json",
11-
"test:unit": "tap -J test/*.test.js test/**/*.test.js",
11+
"test:unit": "tap --no-esm --no-cov -J test/*.test.js test/**/*.test.js",
1212
"test": "npm run test:lint && npm run test:unit && npm run test:typescript",
1313
"test:report": "npm run test:unit | tee out.tap",
1414
"test:reporter": "tap-mocha-reporter xunit < out.tap > test/junit-testresults.xml"
@@ -33,29 +33,24 @@
3333
"devDependencies": {
3434
"ajv-pack": "^0.3.1",
3535
"benchmark": "^2.1.4",
36-
"is-my-json-valid": "^2.19.0",
36+
"compile-json-stringify": "^0.1.2",
37+
"is-my-json-valid": "^2.20.0",
38+
"json-strify": "^0.1.7",
3739
"long": "^4.0.0",
3840
"pre-commit": "^1.2.2",
39-
"proxyquire": "^2.1.0",
41+
"proxyquire": "^2.1.1",
4042
"standard": "^13.0.1",
41-
"tap": "^12.6.5",
42-
"tap-mocha-reporter": "^3.0.9",
43-
"typescript": "^3.0.0",
44-
"compile-json-stringify": "^0.1.2",
45-
"json-strify": "^0.1.7"
43+
"tap": "^14.5.0",
44+
"tap-mocha-reporter": "^4.0.1",
45+
"typescript": "^3.5.3"
4646
},
4747
"dependencies": {
48-
"ajv": "^6.8.1",
48+
"ajv": "^6.10.2",
4949
"deepmerge": "^4.0.0"
5050
},
5151
"standard": {
5252
"ignore": [
5353
"schema-validator.js"
5454
]
55-
},
56-
"greenkeeper": {
57-
"ignore": [
58-
"tap"
59-
]
6055
}
6156
}

0 commit comments

Comments
 (0)