-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.53 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.53 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
58
{
"name": "@exoshtw/sequelize-views-support",
"version": "0.1.0",
"description": "Add Views support to Sequelize",
"main": "lib/index.js",
"scripts": {
"test": "npx jest",
"docs": "rm -rf docs/* && npx esdoc -c esdoc/config.js && cp esdoc/favicon.ico docs/favicon.ico",
"build": "rm -rf lib/**; npx babel src --out-dir lib --copy-files",
"prepare": "npm run build && npm run docs"
},
"keywords": [
"sequelize",
"view",
"views",
"mysql",
"postgres",
"sqlite",
"rds"
],
"author": "exos",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/exoshtw/sequelize-views-support.git"
},
"homepage": "https://exoshtw.github.io/sequelize-view-support/",
"dependencies": {
"debug": "^4.3.3"
},
"peerDependencies": {
"sequelize": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/node": "^7.16.8",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-inject-style-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^8.10.0",
"eslint-config-google": "^0.14.0",
"eslint-config-recommended": "^4.1.0",
"eslint-plugin-jest": "^26.1.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-cli": "^27.5.1",
"lodash": "^4.17.21",
"npm-check-updates": "^12.4.0"
},
"engines": {
"node": ">=12.22.2"
}
}