|
50 | 50 | "./package.json": "./package.json"
|
51 | 51 | },
|
52 | 52 | "devDependencies": {
|
53 |
| - "coveralls": "^2.11.2", |
| 53 | + "coveralls": "^3.1.1", |
54 | 54 | "cpy-cli": "^3.1.1",
|
55 | 55 | "docco": "^0.8.0",
|
56 | 56 | "eslint": "^6.8.0",
|
57 | 57 | "eslint-plugin-import": "^2.20.1",
|
58 | 58 | "glob": "^7.1.6",
|
59 | 59 | "gzip-size-cli": "^1.0.0",
|
60 | 60 | "husky": "^4.2.3",
|
61 |
| - "karma": "^0.13.13", |
62 |
| - "karma-qunit": "~2.0.1", |
63 |
| - "karma-sauce-launcher": "^1.2.0", |
64 |
| - "nyc": "^2.1.3", |
| 61 | + "karma": "^4.4.1", |
| 62 | + "karma-qunit": "^4.1.2", |
| 63 | + "karma-sauce-launcher": "^4.3.6", |
| 64 | + "nyc": "^15.1.0", |
65 | 65 | "pretty-bytes-cli": "^1.0.0",
|
66 | 66 | "qunit": "2.10.1",
|
67 | 67 | "rollup": "^2.40.0",
|
|
71 | 71 | "colors@>1.4.0": "1.4.0"
|
72 | 72 | },
|
73 | 73 | "scripts": {
|
74 |
| - "test": "npm run lint && npm run test-node", |
75 |
| - "coverage": "nyc npm run test-node && nyc report", |
| 74 | + "test": "npm run lint && npm run prepare-tests && npm run test-node", |
| 75 | + "coverage": "npm run prepare-tests && nyc npm run test-node && nyc report", |
76 | 76 | "coveralls": "nyc npm run test-node && nyc report --reporter=text-lcov | coveralls",
|
77 | 77 | "lint": "eslint modules/*.js test/*.js",
|
78 |
| - "test-node": "npm run prepare-tests && qunit test/", |
79 |
| - "test-browser": "npm run prepare-tests && npm i karma-phantomjs-launcher && karma start", |
| 78 | + "test-node": "qunit test/", |
| 79 | + "test-browser": "npm i karma-phantomjs-launcher && karma start", |
80 | 80 | "bundle": "rollup -c && eslint underscore-umd.js && rollup -c rollup.config2.js",
|
81 | 81 | "bundle-treeshake": "cd test-treeshake && rollup --config",
|
82 | 82 | "prepare-tests": "npm run bundle && npm run bundle-treeshake",
|
|
0 commit comments