-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.31 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
{
"name": "async-scheduler",
"version": "1.4.4",
"license": "MIT",
"main": "src/index.ts",
"typings": "src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/kremi151/async-scheduler.git"
},
"scripts": {
"build": "gulp build",
"validate": "gulp validate",
"pub": "gulp publish",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"test-jenkins": "JUNIT_REPORT_PATH=build/test-results/test/report.xml JUNIT_REPORT_STACK=1 JUNIT_REPORT_PACKAGES=1 JENKINS_REPORTER_TEST_DIR=.. mocha --colors --reporter mocha-jenkins-reporter -r ts-node/register src/**/*.spec.ts"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-typescript": "^5.0.1",
"mocha": "^8.1.3",
"mocha-jenkins-reporter": "^0.4.5",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"keywords": [
"promise",
"async",
"await",
"scheduler",
"schedule",
"tasks",
"task",
"concurrency",
"concurrent",
"jobs",
"job"
],
"resolutions": {
"**/mixin-deep": "^1.3.2",
"**/set-value": "^2.0.1",
"**/minimist": "^1.2.2",
"**/kind-of": "^6.0.3",
"**/hosted-git-info": "^2.8.9",
"**/y18n": "^4.0.1"
}
}