minimum node version in package.json

This commit is contained in:
juanelas 2020-04-19 01:31:14 +02:00
parent c2574e3a7c
commit d65ce9555d
1 changed files with 4 additions and 1 deletions

View File

@ -30,6 +30,9 @@
"test": "./test", "test": "./test",
"types": "./types" "types": "./types"
}, },
"engines": {
"node": ">=10.4.0"
},
"scripts": { "scripts": {
"test": "nyc --check-coverage mocha", "test": "nyc --check-coverage mocha",
"coverage": "nyc report --reporter=lcov", "coverage": "nyc report --reporter=lcov",
@ -70,4 +73,4 @@
"standard": "^14.3.3", "standard": "^14.3.3",
"typescript": "^3.8.3" "typescript": "^3.8.3"
} }
} }