forked from odo-network/sequelize-binary-uuid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 858 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 858 Bytes
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
{
"name": "@hypercharlie/sequelize-binary-uuid",
"version": "1.0.2",
"description": "Makes it easy to implement binary(16) uuid's into Sequelize projects.",
"main": "dist/index.js",
"author": "odo, HyperCharlie and other contributors",
"license": "MIT",
"reveal": true,
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/HyperCharlie/sequelize-binary-uuid/"
},
"keywords": [
"binary",
"buffer",
"mysql",
"uuid",
"binary(16)",
"sequelize",
"virtual"
],
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc"
},
"devDependencies": {
"@types/validator": "^13.1.3",
"sequelize": "^6.6.2",
"typescript": "^4.2.4"
},
"peerDependencies": {
"sequelize": "^6.6.2"
},
"dependencies": {
"binary-uuid": "^2.0.3"
}
}