-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.61 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
{
"name": "simple-batch-system",
"version": "2.1.0",
"description": "simple batch system provides job schduler like async function queueing system.",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "github:so5/sbs",
"scripts": {
"mocha": "mocha \"test/**/*.js\"",
"lint": "eslint --fix lib test",
"test": "c8 mocha \"test/**/*.js\"",
"coverage": "c8 report --reporter=text-lcov > coverage-report.lcov",
"prepare": "husky"
},
"author": {
"name": "Naoyuki Sogo"
},
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.0.0",
"@eslint/js": "^9.7.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.4",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.0.3",
"@stylistic/eslint-plugin": "^2.3.0",
"ajv": "^8.17.1",
"c8": "^10.1.2",
"chai": "4.3.10",
"chai-as-promised": "^7.1.1",
"eslint": "^9.7.0",
"eslint-plugin-chai-expect": "^3.1.0",
"eslint-plugin-chai-friendly": "^1.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.10.2",
"eslint-plugin-n": "^17.0.0",
"globals": "^15.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"mocha": "10.8.2",
"mocha-lcov-reporter": "^1.3.0",
"semantic-release": "^24.2.7",
"sinon": "15.2.0",
"typescript": "^5.9.3"
},
"dependencies": {
"debug": "^4.4.3",
"uuid": "^9.0.1"
},
"lint-staged": {
"*.js": "eslint --fix"
}
}