|
4 | 4 | "description": "Put your callbacks into queue to make sure that concurrent requests that you might want to perform will only be executed once", |
5 | 5 | "main": "./lib/callback-queue.js", |
6 | 6 | "scripts": { |
7 | | - "test": "./node_modules/.bin/mocha -r babel-register -R spec test", |
8 | | - "prepublish": "npm run compile", |
9 | | - "pretest": "npm run compile", |
10 | | - "compile": "./node_modules/.bin/babel -d ./lib src" |
| 7 | + "test": "yarn lint && mocha -r @babel/register -R spec test", |
| 8 | + "lint": "eslint ./src", |
| 9 | + "prepublishOnly": "yarn compile", |
| 10 | + "pretest": "yarn compile", |
| 11 | + "compile": "babel -d ./lib src" |
11 | 12 | }, |
12 | 13 | "repository": { |
13 | 14 | "type": "git", |
|
25 | 26 | "author": "Vitaly Aminev <v@aminev.me>", |
26 | 27 | "license": "MIT", |
27 | 28 | "dependencies": { |
28 | | - "debug": "^2.2.0" |
| 29 | + "debug": "^4.1.1" |
| 30 | + }, |
| 31 | + "engine": { |
| 32 | + "node": "^10.15.x" |
29 | 33 | }, |
30 | 34 | "devDependencies": { |
31 | | - "babel-cli": "^6.4.5", |
32 | | - "babel-eslint": "^5.0.0", |
33 | | - "babel-preset-es2015": "^6.3.13", |
34 | | - "babel-preset-stage-0": "^6.3.13", |
35 | | - "babel-register": "^6.5.2", |
36 | | - "chai": "^3.5.0", |
37 | | - "eslint": "^1.10.3", |
38 | | - "eslint-config-airbnb": "^5.0.1", |
39 | | - "mocha": "^2.4.5" |
40 | | - } |
| 35 | + "@babel/cli": "^7.0.0", |
| 36 | + "@babel/core": "^7.0.0", |
| 37 | + "@babel/plugin-transform-strict-mode": "^7.2.0", |
| 38 | + "@babel/register": "^7.0.0", |
| 39 | + "chai": "^4.2.0", |
| 40 | + "chai-spies": "^1.0.0", |
| 41 | + "eslint": "^6.3.0", |
| 42 | + "eslint-config-makeomatic": "^3.1.0", |
| 43 | + "eslint-plugin-import": "^2.18.2", |
| 44 | + "mocha": "^6.2.0" |
| 45 | + }, |
| 46 | + "files": [ |
| 47 | + "src/", |
| 48 | + "lib/" |
| 49 | + ] |
41 | 50 | } |
0 commit comments