-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "rwatchd",
"version": "0.6.0",
"description": "Remote WATCH Daemon",
"main": "lib/index.js",
"engines": {
"node": ">=19"
},
"scripts": {
"mocha": "mocha --recursive test",
"lint": "eslint --fix lib test",
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov > coverage-report.lcov",
"postversion": "git push && git push origin $(git describe --abbrev=0 --tags)",
"knip": "knip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/so5/rwatchd.git"
},
"author": "Naoyuki Sogo <sogo@longtail-software.co.jp>",
"license": "MIT",
"bugs": {
"url": "https://github.com/so5/rwatchd/issues"
},
"homepage": "https://github.com/so5/rwatchd#readme",
"lint-staged": {
"*.js": "eslint --fix"
},
"devDependencies": {
"chai": "^4.4.1",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-chai-friendly": "^0.7.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.9",
"knip": "^4.3.1",
"lint-staged": "^15.2.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"rewire": "^7.0.0",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0"
},
"dependencies": {
"ajv": "^8.14.0",
"ajv-keywords": "^5.1.0",
"debug": "^4.3.4",
"shlex": "^2.1.2",
"ssh-client-wrapper": "^2.4.1",
"simple-batch-system": "^1.20.0"
}
}