-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.06 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
{
"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.17.21",
"mocha": "^10.8.2",
"mock-require": "^3.0.3",
"nyc": "^17.1.0"
},
"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": ">=8.9.0"
}
}