-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
{
"name": "objectionjs-relationship",
"version": "1.4.0",
"description": "ObjectionJs Relationship facade to make relationship mapper more easier",
"source": "src/index.ts",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npx tsc",
"test": "jest",
"doc": "typedoc --name 'Objectionjs Relationship' --out docs src/index.ts",
"prepare": "npm run build",
"prebuild": "rimraf lib",
"prepublishOnly": "npm test && npm run build",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"prettier": "prettier 'src/**/*.{ts,tsx,js,md,css}'",
"prettier:fix": "prettier --write 'src/**/*.{ts,tsx,js,md,css}'"
},
"author": "ValiuLab",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/underscore": "^1.11.4",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typedoc": "^0.27.6",
"typescript": "^5"
},
"dependencies": {
"underscore": "^1.13.4"
},
"peerDependencies": {
"knex": "^2.0.0",
"objection": "^3.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valiulab-core/objectionjs-relationship.git"
},
"bugs": {
"url": "https://github.com/valiulab-core/objectionjs-relationship/issues"
},
"homepage": "https://github.com/valiulab-core/objectionjs-relationship#readme",
"files": [
"lib/**/*"
],
"keywords": [
"objection",
"relation",
"relationship",
"mapping",
"relationMappings"
]
}