-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.08 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
{
"name": "binary-uuid",
"version": "2.0.3",
"description": "Generates sql-friendly binary(16) uuids the right way.",
"main": "./dist/index.js",
"author": "odo",
"license": "MIT",
"reveal": true,
"repository": {
"type": "git",
"url": "https://github.com/odo-network/binary-uuid/"
},
"keywords": [
"binary",
"buffer",
"mysql",
"uuid",
"binary(16)",
"sequelize"
],
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc"
},
"devDependencies": {
"@types/node": "^13.13.4",
"@types/uuid": "^7.0.3",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"typescript": "^3.8.3"
},
"dependencies": {
"uuid": "^7.0.3"
}
}