1 | {
|
2 | "name": "karma-browserify",
|
3 | "description": "A fast browserify integration for Karma that handles large projects with ease",
|
4 | "keywords": [
|
5 | "karma-plugin",
|
6 | "karma-preprocessor",
|
7 | "browserify-tool",
|
8 | "browserify"
|
9 | ],
|
10 | "version": "8.1.0",
|
11 | "scripts": {
|
12 | "all": "run-s lint test",
|
13 | "lint": "eslint .",
|
14 | "test": "mocha --exit -r test/expect test/spec/*.js",
|
15 | "release": "np --no-publish"
|
16 | },
|
17 | "authors": [
|
18 | "Nico Rehwaldt <git_nikku@nixis.de>",
|
19 | "Ben Drucker <bvdrucker@gmail.com>"
|
20 | ],
|
21 | "main": "index.js",
|
22 | "license": "MIT",
|
23 | "repository": {
|
24 | "type": "git",
|
25 | "url": "git@github.com:nikku/karma-browserify.git"
|
26 | },
|
27 | "bugs": "https://github.com/nikku/karma-browserify/issues",
|
28 | "dependencies": {
|
29 | "convert-source-map": "^1.8.0",
|
30 | "hat": "^0.0.3",
|
31 | "js-string-escape": "^1.0.0",
|
32 | "lodash": "^4.17.21",
|
33 | "minimatch": "^3.0.0",
|
34 | "os-shim": "^0.1.3"
|
35 | },
|
36 | "devDependencies": {
|
37 | "brfs": "^2.0.2",
|
38 | "browser-unpack": "^1.4.2",
|
39 | "browserify": "^17.0.0",
|
40 | "chai": "^4.3.4",
|
41 | "eslint": "^7.30.0",
|
42 | "eslint-plugin-mocha": "^8.2.0",
|
43 | "jasmine-core": "^3.8.0",
|
44 | "karma": "^5.2.3",
|
45 | "karma-chrome-launcher": "^3.1.0",
|
46 | "karma-jasmine": "^4.0.1",
|
47 | "mocha": "^8.4.0",
|
48 | "np": "^7.5.0",
|
49 | "npm-run-all": "^4.1.5",
|
50 | "resolve": "^1.20.0",
|
51 | "sinon": "^9.2.4",
|
52 | "sinon-chai": "^3.7.0",
|
53 | "touch": "^3.1.0",
|
54 | "tsify": "^5.0.4",
|
55 | "typescript": "^4.3.5",
|
56 | "watchify": "^4.0.0"
|
57 | },
|
58 | "peerDependencies": {
|
59 | "browserify": ">=10 <18",
|
60 | "karma": ">=4.3.0",
|
61 | "watchify": ">=3 <5"
|
62 | },
|
63 | "engines": {
|
64 | "node": ">=10"
|
65 | },
|
66 | "files": [
|
67 | "lib",
|
68 | "index.js"
|
69 | ]
|
70 | }
|