-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
72 lines (72 loc) · 1.73 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
{
"name": "venus",
"main": "Venus.js",
"description": "Execution environment for JavaScript unit testing",
"version": "2.3.9",
"keywords": [
"testing"
],
"homepage": "https://github.com/linkedin/venus.js",
"repository": {
"type": "git",
"url": "https://github.com/linkedin/venus.js.git"
},
"bugs": {
"url": "https://github.com/linkedin/venus.js/issues"
},
"engines": {
"node": ">=0.10.0"
},
"bin": {
"venus": "./bin/venus"
},
"license": "Apache 2.0",
"dependencies": {
"async": "0.1.22",
"chokidar": "0.6.2",
"cli-prompt": "0.1.0",
"colors": "0.6.2",
"commander": "1.1.1",
"consolidate": "0.3.0",
"deferred": "0.6.5",
"dustjs-linkedin": "0.6.0",
"expect.js": "~0.2.0",
"express": "3.6.0",
"flavored-path": "0.0.8",
"fs-tools": "0.2.2",
"i18n": "0.3.5",
"istanbul": "0.3.4",
"json5": "0.1.0",
"mkdirp": "0.3.5",
"graceful-fs": "4.1.11",
"phantomjs": "1.9.7-8",
"portscanner": "0.1.3",
"rmrf": "1.0.2",
"sauce-connect-launcher": "0.1.3",
"saucelabs": "0.0.9",
"selenium-webdriver": "2.35.1",
"socket.io": "0.8.7",
"socket.io-client": "0.9.6",
"underscore": "1.3.3",
"underscore.string": "2.2.0rc",
"useragent-parser": "0.1.1",
"when": "2.5.1",
"winston": "0.6.1",
"wrench": "1.4.3"
},
"devDependencies": {
"grunt": "0.4.5",
"grunt-release": "0.7.0",
"load-grunt-tasks": "0.6.0",
"mocha": "2.2.1",
"sinon": "1.3.4"
},
"os": [
"!win32"
],
"preferGlobal": true,
"scripts": {
"test": "./node_modules/.bin/mocha test/unit/node/test_suite.js && ./bin/venus run -t test/unit/client -n",
"int-test": "./node_modules/.bin/mocha test/integration"
}
}