-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 966 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 966 Bytes
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
{
"name": "schemy",
"version": "3.3.1",
"description": "A (very) simple, lightweight schema validation library",
"main": "index.js",
"scripts": {
"test": "jasmine-node --verbose --forceexit .",
"test-debugger": "node --inspect-brk node_modules/.bin/jasmine-node . --verbose --forceexit",
"coverage": "nyc npm test",
"report": "nyc --reporter=html --reporter=text npm test"
},
"keywords": [
"schema",
"validation",
"json",
"joi",
"mongoose",
"library",
"dynamoose",
"node",
"js"
],
"contributors": [
"Alan Berdinelli"
],
"author": "Alan Berdinelli",
"repository": {
"type": "git",
"url": "https://github.com/aeberdinelli/schemy.git"
},
"nyc": {
"exclude": "**/*.spec.js"
},
"homepage": "https://schemy.js.org/",
"license": "MIT",
"devDependencies": {
"jasmine": "^3.5.0",
"jasmine-core": "^3.5.0",
"jasmine-node": "^3.0.0",
"nyc": "^15.1.0"
}
}