-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "sequelize-sql",
"version": "0.0.6",
"description": "This's simple call sequelize function on your terminal",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "say 'checking eslint' && eslint --ignore-path .gitignore index.js && say 'eslint clean'"
},
"engines": {
"node": ">=6.0.0"
},
"author": "hunghk ([email protected])",
"contributors": [
"Jim Hoang ([email protected])",
"Suresh Kumar Mukhiya ([email protected])"
],
"repository": {
"type": "git",
"url": "https://github.com/hunghkit/sequelize-sql.git"
},
"bugs": {
"url": "https://github.com/hunghkit/sequelize-sql/issues"
},
"keywords": [
"sql",
"mysql",
"sqlite",
"postgresql",
"commander",
"sequelize",
"nodejs"
],
"license": "MIT",
"bin": {
"sequelize-sql": "./index.js"
},
"pre-commit": "eslint",
"dependencies": {
"babel-eslint": "^10.0.1",
"co": "4.6.0",
"commander": "2.19.0"
},
"devDependencies": {
"eslint": "5.10.0",
"eslint-plugin-react": "7.12.4",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"pre-commit": "^1.2.2"
}
}