forked from mocha-parallel/mocha-parallel-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.53 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.53 KB
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
85
86
87
88
89
90
{
"name": "mocha-parallel-tests",
"version": "2.0.3",
"homepage": "https://github.com/mocha-parallel/mocha-parallel-tests",
"description": "Run mocha tests in parallel",
"main": "./dist/main/mocha.js",
"module": "./dist/main/mocha.js",
"bin": {
"mocha-parallel-tests": "dist/bin/cli.js"
},
"contributors": [
"Dmitrii Sorin <[email protected]>",
"Gabriel Fürstenheim",
"Kirill Molchanov <[email protected]>",
"Maria Motkina <[email protected]>",
"Nikolay Basov",
"Vadim Kolontsov <[email protected]>"
],
"dependencies": {
"circular-json": "^0.5.4",
"debug": "3.1.0",
"yargs": "12.0.1"
},
"repository": {
"type": "git",
"url": "git://github.com/mocha-parallel/mocha-parallel-tests.git"
},
"bugs": {
"url": "https://github.com/mocha-parallel/mocha-parallel-tests/issues"
},
"files": [
"bin",
"dist",
"lib"
],
"types": "dist/main/mocha.d.ts",
"keywords": [
"mocha",
"mocha-parallel-tests",
"parallel tests",
"unit tests",
"tests"
],
"scripts": {
"build": "tsc && chmod +x dist/bin/cli.js",
"clean": "rm -fr dist",
"eslint": "eslint -c test/.eslintrc.js test/",
"lint": "npm run eslint && npm run tslint",
"precommit": "npm run lint",
"prepublishOnly": "npm run clean && npm run build",
"pretest": "npm run prepublishOnly",
"test": "bash test/index.sh",
"test:ci": "npm run tslint && npm run test:mocha-3 && npm run test:mocha-4 && npm run test:mocha-5",
"test:mocha-3": "npm install mocha@3 --no-save && npm test",
"test:mocha-4": "npm install mocha@4 --no-save && npm test",
"test:mocha-5": "npm install mocha@5 --no-save && npm test",
"tslint": "tslint -p . -c tslint.json 'src/**/*.ts'"
},
"license": "MIT",
"engines": {
"node": ">=8"
},
"peerDependencies": {
"mocha": "3.0.0 - 5.x.x"
},
"devDependencies": {
"@types/circular-json": "^0.4.0",
"@types/debug": "0.0.30",
"@types/mocha": "^5.2.1",
"@types/node": "^10.1.3",
"@types/yargs": "^11.0.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"cheerio": "^0.22.0",
"eslint": "^5.0.0",
"husky": "^0.14.3",
"mocha": "^5.2.0",
"mocha-allure-reporter": "^1.4.0",
"mocha-jenkins-reporter": "^0.3.7",
"mocha-teamcity-reporter": "^2.4.0",
"mochawesome": "^3.0.2",
"node-gyp": "^3.6.0",
"q": "^1.5.1",
"sinon": "^6.0.0",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"typescript": "^2.9.1"
}
}