-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.4 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
{
"name": "karma-child-process",
"version": "1.0.14",
"description": "A simple Karma framework to start a child process (which is supposed to start a server written with node).",
"main": "index.js",
"license": "Apache-2.0",
"homepage": "https://github.com/TNG/karma-child-process#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/TNG/karma-child-process.git"
},
"bugs": {
"url": "https://github.com/TNG/karma-child-process/issues"
},
"scripts": {
"eslint": "mkdir -p \"report/eslint\" && eslint -f checkstyle . > report/eslint/eslint.xml",
"integration-test": "node node_modules/karma/bin/karma start integ-test/karma.conf.js",
"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'",
"test": "npm run unittest && npm run integration-test"
},
"devDependencies": {
"ansi-regex": "6.0.1",
"browserify": "17.0.0",
"chai": "4.3.7",
"eslint": "8.30.0",
"express": "4.21.1",
"karma": "6.4.1",
"karma-browserify": "8.1.0",
"karma-firefox-launcher": "2.1.3",
"karma-mocha": "2.0.1",
"karma-mocha-reporter": "2.2.5",
"karma-child-process": "file:.",
"mocha": "10.2.0",
"rewire": "6.0.0",
"sinon": "15.0.1",
"sinon-chai": "3.7.0",
"watchify": "4.0.0",
"ws": "8.17.1"
}
}