-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.29 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
{
"name": "karma-server-side",
"version": "1.8.0",
"description": "Ever wanted to interact with the host system when running karma tests? This module allows the tests running in your browser to do things on the server-side, that is, in node. This means you can run API or DB setup code from your tests inside karma.",
"main": "index.js",
"scripts": {
"test": "karma start --single-run && mocha"
},
"author": "Tim Macfarlane <[email protected]>",
"license": "ISC",
"browser": "browser.js",
"devDependencies": {
"browserify": "16.2.3",
"chai": "4.2.0",
"faux-jax": "5.0.6",
"fs-promise": "2.0.3",
"karma": "4.1.0",
"karma-browserify": "6.0.0",
"karma-browserstack-launcher": "1.5.1",
"karma-chrome-launcher": "2.2.0",
"karma-ievms": "0.1.0",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.5",
"lie": "3.3.0",
"mocha": "^6.1.4",
"watchify": "3.11.1"
},
"dependencies": {
"lowscore": "1.17.0",
"parse-function": "^2.3.2",
"socket.io-client": "2.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/featurist/karma-server-side.git"
},
"bugs": {
"url": "https://github.com/featurist/karma-server-side/issues"
},
"homepage": "https://github.com/featurist/karma-server-side#readme"
}