-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.42 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.42 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
{
"name": "sequelize-binary-uuid",
"version": "1.0.0",
"description": "Makes it easy to implement binary(16) uuid's into Sequelize projects.",
"main": "dist/index.js",
"author": "odo",
"license": "MIT",
"reveal": true,
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/odo-network/sequelize-binary-uuid/"
},
"keywords": [
"binary",
"buffer",
"mysql",
"uuid",
"binary(16)",
"sequelize",
"virtual"
],
"scripts": {
"build": "cross-env NODE_ENV=production rimraf dist && npm-run-all -p build:**",
"build:lib:babel": "cross-env NODE_ENV=production babel src --out-dir dist",
"try": "node ./quick-test.js"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-preset-minify": "^0.5.0",
"cross-env": "^5.2.0",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"npm-run-all": "^4.1.5",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"rimraf": "^2.6.2",
"sequelize": "^4.42.0"
},
"peerDependencies": {
"sequelize": "^4.42.0"
},
"dependencies": {
"binary-uuid": "^1.2.0"
}
}