forked from serby/schemata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.88 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@clocklimited/schemata",
"description": "Define, create, and validate your business objects, based on well defined schema.",
"version": "8.0.0",
"author": "Paul Serby <[email protected]>",
"contributors": [
{
"name": "Paul Serby",
"email": "[email protected]"
},
{
"name": "Dom Harrington",
"email": "[email protected]"
},
{
"name": "Tom Smith",
"email": "[email protected]"
}
],
"dependencies": {
"is-primitive": "^3.0.0",
"lodash.clonedeep": "^4.5.0",
"util.promisify": "^1.1.1"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/runtime": "^7.18.3",
"async": "^3.2.3",
"babel-plugin-transform-async-to-promises": "^0.8.18",
"core-js": "3.22.8",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"required": "^1.0.0",
"validity": "^1.1.1",
"validity-length": "^2.0.0",
"validity-required": "^1.0.0"
},
"keywords": [
"entity",
"schema",
"data"
],
"repository": "git://github.com/clocklimited/schemata.git",
"main": "./dist/schemata.js",
"files": [
"dist"
],
"scripts": {
"lint:js": "eslint . -f unix --cache --ext '.js'",
"prettier": "prettier --write **/*.js",
"test": "yarn test:code && yarn lint:js",
"test:code": "nyc mocha",
"run-test": "mocha",
"test:watch": "mocha --watch",
"build": "rm -rf dist && mkdir dist && babel schemata.js -d dist && babel lib -d dist/lib",
"prepublish": "yarn test && yarn build"
},
"engines": {
"node": ">=14"
},
"license": "ISC"
}