-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 1.91 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@rawmodel/utils",
"version": "3.3.3",
"description": "Helper functions for RawModel.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -Rf ./dist",
"build": "npm run clean; npx tsc",
"lint": "npx eslint 'src/**/*.ts?(x)'",
"test": "npx nyc npx hayspec test"
},
"hayspec": {
"require": [
"ts-node/register"
],
"match": [
"./src/tests/**/*.test.ts"
]
},
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"exclude": [
"src/tests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/rawmodel/framework.git"
},
"bugs": {
"url": "https://github.com/rawmodel/framework/issues"
},
"homepage": "https://github.com/rawmodel/framework#readme",
"keywords": [
"model",
"modeling",
"document",
"object",
"schema",
"orm",
"odm",
"map",
"mapping",
"context",
"contextify",
"rawmodel",
"class",
"db",
"database",
"storage",
"structure",
"structuring",
"error",
"errors",
"handling",
"handle",
"valid",
"validate",
"validation",
"validator",
"validating",
"type",
"cast",
"casting",
"history",
"tracking",
"change",
"field",
"fields",
"serialize",
"serialization",
"serializable",
"schema",
"json"
],
"author": "Kristijan Sedlak (Xpepermint)",
"license": "MIT",
"devDependencies": {
"@hayspec/cli": "^0.10.0",
"@hayspec/spec": "^0.10.0",
"nyc": "^15.0.1",
"ts-node": "^8.10.1",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsdoc": "25.4.2",
"eslint-plugin-unicorn": "20.0.0",
"eslint": "7.0.0",
"typescript": "^3.8.3"
}
}