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