-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
84 lines (84 loc) · 4.16 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "karma-electron",
"description": "Karma launcher and preprocessor for Electron",
"version": "7.3.0",
"homepage": "https://github.com/twolfson/karma-electron",
"author": {
"name": "Todd Wolfson",
"email": "[email protected]",
"url": "http://twolfson.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/twolfson/karma-electron.git"
},
"bugs": {
"url": "https://github.com/twolfson/karma-electron/issues"
},
"main": "lib/index",
"engines": {
"node": ">= 8.0.0"
},
"license": "Unlicense",
"scripts": {
"precheck": "twolfson-style precheck lib/ test/",
"lint": "twolfson-style lint lib/ test/",
"start-reference": "electron test/reference",
"test": "npm run test-karma-all && npm run lint",
"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 && npm run test-karma-main-require && npm run test-karma-no-node-integration",
"test-karma-continuous": "karma start test/integration-test/karma.conf.js --no-single-run",
"test-karma-custom-context-file-comment": "# DEV: We need to manually test custom debug file support since it's designed for debugging, not testing",
"test-karma-custom-context-file": "cross-env TEST_TYPE=CUSTOM_CONTEXT_FILE karma start test/integration-test/karma.conf.js --single-run",
"test-karma-eof-comment": "cross-env TEST_TYPE=EOF_COMMENT karma start test/integration-test/karma.conf.js --single-run",
"test-karma-filename-override": "cross-env TEST_TYPE=FILENAME_OVERRIDE karma start test/integration-test/karma.conf.js --single-run",
"test-karma-failure": "node bin/verify-failure.js TEST_TYPE=FAILURE karma start test/integration-test/karma.conf.js --single-run",
"test-karma-karma-comment": "# DEV: We run `test-karma-karma` twice to verify no user-data-dir is leaking",
"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",
"test-karma-main-require": "cross-env TEST_TYPE=MAIN_REQUIRE karma start test/integration-test/karma.conf.js --single-run --browsers ElectronMainRequire",
"test-karma-no-node-integration": "cross-env TEST_TYPE=NO_NODE_INTEGRATION karma start test/integration-test/karma.conf.js --single-run --browsers Electron",
"test-karma-node-require": "cross-env TEST_TYPE=NODE_REQUIRE karma start test/integration-test/karma.conf.js --single-run",
"test-karma-phantomjs": "cross-env TEST_TYPE=PHANTOMJS karma start test/integration-test/karma.conf.js --single-run --browsers PhantomJS",
"test-karma-single-run": "karma start test/integration-test/karma.conf.js --single-run",
"test-karma-source-map": "cross-env TEST_TYPE=SOURCE_MAP karma start test/integration-test/karma.conf.js --single-run",
"test-karma-uncaught-exception": "node bin/verify-failure.js TEST_TYPE=UNCAUGHT_EXCEPTION karma start test/integration-test/karma.conf.js --single-run",
"test-windows": "npm run test-karma-all"
},
"dependencies": {
"async": "~3.2.2",
"combine-source-map": "~0.8.0",
"commander": "~2.9.0",
"convert-source-map": "~1.2.0",
"js-string-escape": "~1.0.0",
"minstache": "~1.2.0",
"xtend": "~4.0.1"
},
"devDependencies": {
"collections": "~3.0.0",
"cross-env": "~1.0.7",
"electron": "~20.0.2",
"foundry": "~4.0.3",
"foundry-release-git": "~2.0.2",
"foundry-release-npm": "~2.0.2",
"jscs": "~3.0.7",
"jshint": "~2.9.3",
"karma": "~1.7.0",
"karma-mocha": "~0.2.2",
"karma-phantomjs-launcher": "~1.0.0",
"mocha": "~1.11.0",
"phantomjs-prebuilt": "~2.1.5",
"request": "~2.72.0",
"twolfson-style": "~1.6.0"
},
"keywords": [
"karma-plugin",
"karma-launcher",
"karma-preprocessor",
"electron"
],
"foundry": {
"releaseCommands": [
"foundry-release-git",
"foundry-release-npm"
]
}
}