-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 891 Bytes
/
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
{
"name": "couchster",
"version": "1.2.1",
"description": "A tool to build comprehensive validation functions for Apache CouchDB",
"keywords": [
"apache",
"apache-couchdb",
"couchdb",
"couchster",
"synctos",
"validation"
],
"main": "src/index.js",
"dependencies": {},
"devDependencies": {
"chai": "^4.5.0",
"jshint": "^2.13.6",
"lodash": "^4.17.21",
"mocha": "^11.1.0",
"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\""
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/OldSneerJaw/couchster"
},
"bin": {
"couchster": "./make-validation-function",
"couchster-validate": "./validate-document-definitions"
},
"engines": {
"node": ">=8.11.0"
}
}