-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.27 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
{
"name": "@ouroboros/define",
"version": "1.1.0",
"description": "A system for defining and validating data regardless of data store",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tslint -p tsconfig.json && tsc && typedoc",
"clean": "rm build/*",
"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 <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.4.2",
"@jest/types": "^29.4.2",
"jest": "^29.4.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.25.13",
"typescript": "^4.8.3"
},
"dependencies": {
"@ouroboros/clone": "^1.1.0",
"@ouroboros/tools": "^0.6.1",
"decimal.js": "^10.4.3"
}
}