karma-child-process 1.0.4 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +1 -1
- package/package.json +16 -16
package/NOTICE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
karma-child-process
|
|
2
2
|
-------------------
|
|
3
|
-
Copyright 2017-
|
|
3
|
+
Copyright 2017-2022 Sven Käbisch <sven.kaebisch@tngtech.com>
|
|
4
4
|
|
|
5
5
|
This product includes software developed at
|
|
6
6
|
TNG Technology Consulting GmbH (https://www.tngtech.com/).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "karma-child-process",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "A simple Karma framework to start a child process (which is supposed to start a server written with node).",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -15,25 +15,25 @@
|
|
|
15
15
|
"scripts": {
|
|
16
16
|
"eslint": "mkdir -p \"report/eslint\" && eslint -f checkstyle . > report/eslint/eslint.xml",
|
|
17
17
|
"integration-test": "node node_modules/karma/bin/karma start integ-test/karma.conf.js",
|
|
18
|
-
"unittest": "mkdir -p \"report/tests\" && env BABEL_ENV='test' XUNIT_FILE='report/tests/TESTS-NodeJS.xml' node node_modules/mocha/bin/mocha --ui bdd --recursive 'unittest/*.spec.js'
|
|
18
|
+
"unittest": "mkdir -p \"report/tests\" && env BABEL_ENV='test' XUNIT_FILE='report/tests/TESTS-NodeJS.xml' node node_modules/mocha/bin/mocha --ui bdd --recursive 'unittest/*.spec.js'",
|
|
19
19
|
"test": "npm run unittest && npm run integration-test"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"karma
|
|
28
|
-
"karma-
|
|
29
|
-
"karma-
|
|
22
|
+
"ansi-regex": "6.0.1",
|
|
23
|
+
"browserify": "17.0.0",
|
|
24
|
+
"chai": "4.3.6",
|
|
25
|
+
"eslint": "8.8.0",
|
|
26
|
+
"express": "4.17.2",
|
|
27
|
+
"karma": "6.3.17",
|
|
28
|
+
"karma-browserify": "8.1.0",
|
|
29
|
+
"karma-firefox-launcher": "2.1.2",
|
|
30
|
+
"karma-mocha": "2.0.1",
|
|
30
31
|
"karma-mocha-reporter": "2.2.5",
|
|
31
32
|
"karma-child-process": "file:.",
|
|
32
|
-
"mocha": "
|
|
33
|
-
"rewire": "
|
|
34
|
-
"sinon": "
|
|
35
|
-
"sinon-chai": "3.
|
|
36
|
-
"
|
|
37
|
-
"watchify": "3.11.1"
|
|
33
|
+
"mocha": "9.2.0",
|
|
34
|
+
"rewire": "6.0.0",
|
|
35
|
+
"sinon": "13.0.1",
|
|
36
|
+
"sinon-chai": "3.7.0",
|
|
37
|
+
"watchify": "4.0.0"
|
|
38
38
|
}
|
|
39
39
|
}
|