-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.16 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
{
"name": "synctos",
"version": "2.7.1",
"description": "The Syncmaker. A tool to build comprehensive sync functions for Couchbase Sync Gateway.",
"keywords": [
"couchbase",
"couchbase-sync-gateway",
"couchbase-mobile",
"sync-gateway",
"synchronization",
"synctos",
"validation"
],
"main": "src/index.js",
"dependencies": {},
"devDependencies": {
"chai": "^4.5.0",
"jshint": "^2.13.6",
"lodash": "^4.18.1",
"mocha": "^11.7.6",
"mock-require": "^3.0.3",
"nyc": "^18.0.0"
},
"overrides": {
"jshint": {
"lodash": "^4.18.1",
"minimatch": "^3.1.5"
}
},
"scripts": {
"clean": "rm -rf build .nyc_output",
"test": "etc/prepare-tests.sh && nyc mocha \"**/*.spec.js\"",
"test-report": "etc/prepare-tests.sh && mkdir -p build/test-reports/ && nyc mocha -R xunit \"**/*.spec.js\" > build/test-reports/synctos.xml"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/OldSneerJaw/synctos"
},
"bin": {
"synctos": "./make-sync-function",
"synctos-validate": "./validate-document-definitions"
},
"engines": {
"node": ">=20.0.0"
}
}