-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.25 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
48
49
50
51
52
{
"name": "@ouroboros/define",
"version": "1.1.4",
"description": "A system for defining and validating data regardless of data store",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tslint -p tsconfig.json && tsc",
"clean": "rm lib/*",
"docs": "typedoc",
"test": "jest"
},
"homepage": "https://ouroboroscoding.com/define",
"repository": {
"type": "git",
"url": "git+https://github.com/ouroboroscoding/define-js.git"
},
"bugs": {
"url": "https://github.com/ouroboroscoding/define-js/issues"
},
"keywords": [
"data",
"database",
"db",
"document",
"format",
"store",
"structure",
"validate",
"validation"
],
"author": "Chris Nasr <chris@ouroboroscoding.com>",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.29.5",
"@babel/preset-typescript": "^7.28.5",
"@jest/globals": "^30.4.1",
"@jest/types": "^30.4.1",
"jest": "^30.4.2",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.28.19",
"typescript": "^5.9.2"
},
"dependencies": {
"@ouroboros/clone": "^1.1.0",
"@ouroboros/tools": "^0.7.4",
"decimal.js": "^10.6.0"
}
}