-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.08 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
{
"name": "@nocke/syncdocs",
"version": "0.3.0",
"description": "client-serverish git syncing",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/main.js -- param1 \"param two\"",
"clean": "rm -rf ./node_modules ./package-lock.json",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "mocha",
"test:single": "mocha test/simpleRun.spec.js"
},
"bin": {
"syncdocs": "./src/main.js"
},
"keywords": [
"git",
"sync",
"client server",
"javascript"
],
"author": "Frank Nocke",
"license": "MIT",
"_": " ↓ fixes inflight@1.0.6 deprecation/leak warnings – https://stackoverflow.com/a/78799034",
"overrides": {
"glob": "^9"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@nocke/util": "^0"
},
"devDependencies": {
"chai": "^5.1.1",
"eslint": "^9.14.0",
"eslint-import-resolver-node": "^0.3.9",
"globals": "^15.4.0",
"mocha": "^10.4.0"
}
}