-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.38 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
{
"name": "objectionjs-slugify",
"version": "1.1.1",
"description": "Package to make easy slugify on ObjectionJS ORM",
"source": "src/index.ts",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "npx tsc",
"doc": "typedoc --theme oxide --name 'Objectionjs Relationship' --out docs src/index.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run build",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ralcorta/nestjs-slugify.git"
},
"author": "ValiuLab",
"license": "MIT",
"bugs": {
"url": "https://github.com/ralcorta/nestjs-slugify/issues"
},
"files": [
"lib/**/*"
],
"homepage": "https://github.com/ralcorta/nestjs-slugify#readme",
"dependencies": {
"knex": "^0.21.19",
"objection": "github:ralcorta/objection.js",
"reflect-metadata": "^0.1.13",
"slugify": "^1.4.7"
},
"devDependencies": {
"typedoc-theme-oxide": "^0.1.6",
"typedoc": "^0.22.17",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"fixture-factory": "^1.5.1",
"jest": "^26.6.3",
"mock-knex": "^0.4.9",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"keywords": [
"objection",
"slugify"
]
}