-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
108 lines (108 loc) · 3.13 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "mocha-parallel-tests",
"version": "2.3.0",
"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",
"Jorge Florian <[email protected]>",
"Kirill Molchanov <[email protected]>",
"Maria Motkina <[email protected]>",
"Nikolay Basov",
"Vadim Kolontsov <[email protected]>",
"Hennadii Bulakh",
"Jeroen Claassens <[email protected]>"
],
"dependencies": {
"circular-json": "^0.5.9",
"debug": "^4.1.1",
"uuid": "^3.4.0",
"yargs": "^13.3.0"
},
"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",
"threads",
"worker threads"
],
"scripts": {
"build": "tsc && chmod +x dist/bin/cli.js",
"clean": "rm -fr dist",
"lint": "npm run lint:sources && npm run lint:tests",
"lint:sources": "eslint -c src/.eslintrc.js --ext .ts src/",
"lint:tests": "eslint -c test/.eslintrc.js --ext .js test/",
"prepublishOnly": "npm run clean && npm run build",
"pretest": "npm run prepublishOnly",
"test": "bash test/index.sh",
"test:ci": "npm run lint && npm run test:mocha-3 && npm run test:mocha-4 && npm run test:mocha-5 && npm run test:mocha-6 && npm run test:mocha-7",
"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",
"test:mocha-6": "npm install mocha@6 --no-save && npm test",
"test:mocha-7": "npm install mocha@7 --no-save && npm test"
},
"license": "MIT",
"engines": {
"node": ">=8"
},
"peerDependencies": {
"mocha": "3.0.0 - 7.x.x"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-transform-react-jsx": "^7.8.3",
"@babel/register": "^7.8.3",
"@types/circular-json": "^0.4.0",
"@types/debug": "^4.1.5",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.0",
"@types/uuid": "^3.4.7",
"@types/yargs": "^13.0.8",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"chai": "^4.2.0",
"cheerio": "^0.22.0",
"eslint": "^6.8.0",
"husky": "^3.1.0",
"microtime": "^3.0.0",
"mocha": "^7.0.1",
"mocha-allure-reporter": "^1.4.0",
"mocha-jenkins-reporter": "^0.4.2",
"mocha-teamcity-reporter": "^3.0.0",
"mochawesome": "^4.1.0",
"q": "^1.5.1",
"sinon": "^7.5.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"funding": {
"url": "https://github.com/sponsors/1999"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}