UNPKG

3.81 kBJSONView Raw
1{
2 "name": "karma-electron",
3 "description": "Karma launcher and preprocessor for Electron",
4 "version": "5.1.1",
5 "homepage": "https://github.com/twolfson/karma-electron",
6 "author": {
7 "name": "Todd Wolfson",
8 "email": "todd@twolfson.com",
9 "url": "http://twolfson.com/"
10 },
11 "repository": {
12 "type": "git",
13 "url": "git://github.com/twolfson/karma-electron.git"
14 },
15 "bugs": {
16 "url": "https://github.com/twolfson/karma-electron/issues"
17 },
18 "main": "lib/index",
19 "engines": {
20 "node": ">= 0.10.0"
21 },
22 "license": "Unlicense",
23 "scripts": {
24 "precheck": "twolfson-style precheck lib/ test/",
25 "lint": "twolfson-style lint lib/ test/",
26 "start-reference": "electron test/reference",
27 "test": "npm run test-karma-all && npm run lint",
28 "test-karma-all": "npm run test-karma-single-run && npm run test-karma-failure && npm run test-karma-uncaught-exception && npm run test-karma-karma && npm run test-karma-phantomjs && npm run test-karma-eof-comment && npm run test-karma-source-map && npm run test-karma-node-require && npm run test-karma-custom-context-file && npm run test-karma-filename-override",
29 "test-karma-continuous": "karma start test/integration-test/karma.conf.js --no-single-run",
30 "test-karma-custom-context-file-comment": "# DEV: We need to manually test custom debug file support since it's designed for debugging, not testing",
31 "test-karma-custom-context-file": "cross-env TEST_TYPE=CUSTOM_CONTEXT_FILE karma start test/integration-test/karma.conf.js --single-run",
32 "test-karma-eof-comment": "cross-env TEST_TYPE=EOF_COMMENT karma start test/integration-test/karma.conf.js --single-run",
33 "test-karma-filename-override": "cross-env TEST_TYPE=FILENAME_OVERRIDE karma start test/integration-test/karma.conf.js --single-run",
34 "test-karma-failure": "node bin/verify-failure.js TEST_TYPE=FAILURE karma start test/integration-test/karma.conf.js --single-run",
35 "test-karma-karma-comment": "# DEV: We run `test-karma-karma` twice to verify no user-data-dir is leaking",
36 "test-karma-karma": "cross-env TEST_TYPE=KARMA karma start test/integration-test/karma.conf.js --single-run && cross-env TEST_TYPE=KARMA karma start test/integration-test/karma.conf.js --single-run",
37 "test-karma-node-require": "cross-env TEST_TYPE=NODE_REQUIRE karma start test/integration-test/karma.conf.js --single-run",
38 "test-karma-phantomjs": "cross-env TEST_TYPE=PHANTOMJS karma start test/integration-test/karma.conf.js --single-run --browsers PhantomJS",
39 "test-karma-single-run": "karma start test/integration-test/karma.conf.js --single-run",
40 "test-karma-source-map": "cross-env TEST_TYPE=SOURCE_MAP karma start test/integration-test/karma.conf.js --single-run",
41 "test-karma-uncaught-exception": "node bin/verify-failure.js TEST_TYPE=UNCAUGHT_EXCEPTION karma start test/integration-test/karma.conf.js --single-run",
42 "test-windows": "npm run test-karma-all"
43 },
44 "dependencies": {
45 "commander": "~2.9.0",
46 "convert-source-map": "~1.2.0",
47 "js-string-escape": "~1.0.0",
48 "minstache": "~1.2.0",
49 "xtend": "~4.0.1"
50 },
51 "devDependencies": {
52 "collections": "~3.0.0",
53 "cross-env": "~1.0.7",
54 "electron": "~1.3.3",
55 "foundry": "~4.0.3",
56 "foundry-release-git": "~2.0.2",
57 "foundry-release-npm": "~2.0.2",
58 "jscs": "~3.0.7",
59 "jshint": "~2.9.3",
60 "karma": "~1.1.0",
61 "karma-mocha": "~0.2.2",
62 "karma-phantomjs-launcher": "~1.0.0",
63 "mocha": "~1.11.0",
64 "phantomjs-prebuilt": "~2.1.5",
65 "request": "~2.72.0",
66 "twolfson-style": "~1.6.0"
67 },
68 "keywords": [
69 "karma-plugin",
70 "karma-launcher",
71 "karma-preprocessor",
72 "electron"
73 ],
74 "foundry": {
75 "releaseCommands": [
76 "foundry-release-git",
77 "foundry-release-npm"
78 ]
79 }
80}
\No newline at end of file