-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·99 lines (99 loc) · 2.43 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@fabrix/spool-sequelize",
"version": "1.6.20",
"description": "Spool - Datastore Spool for Sequelize.js http://sequelizejs.com",
"scripts": {
"release": "standard-version",
"build": "tsc -p ./lib/tsconfig.release.json",
"lint": "tslint -p ./lib",
"watch": "tsc -w -p ./lib/tsconfig.release.json",
"test": "npm run clean && npm run lint && npm run build && nyc mocha",
"prepublishOnly": "npm run compile",
"compile": "npm run clean && npm run build",
"clean": "rm -rf dist",
"ci": "cd .. && ci"
},
"homepage": "https://fabrix.app",
"author": {
"name": "scott-wyatt",
"email": "scottwyatt86@gmail.com",
"url": "https://cali-style.com"
},
"contributors": [
{
"name": "Jaumard",
"url": "https://github.com/jaumard"
},
{
"name": "pmould",
"url": "http://pmouldeveloper.co"
}
],
"keywords": [
"spool",
"fabrix",
"trailjs",
"sequelize",
"orm",
"datastore",
"database"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"archetype"
],
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fabrix-app/spool-sequelize.git"
},
"dependencies": {
"joi": "^14.3.1",
"lodash": "^4.17.15",
"merge-options": "^2.0.0",
"sequelize": "^5.21.1"
},
"devDependencies": {
"@fabrix/fabrix": "^1.6.4",
"@fabrix/lint": "^1.0.0-alpha.4",
"@fabrix/spool-errors": "^1.6.2",
"@fabrix/spool-router": "^1.6.4",
"@fabrix/spool-tapestries": "^1.6.0",
"@fabrix/spool-winston": "^1.6.0",
"@types/lodash": "^4.14.144",
"@types/node": "~12.11.2",
"mocha": "^6",
"nyc": "^14.1.1",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"smokesignals": "^3",
"source-map-support": "^0.5.13",
"sqlite3": "^4.1.0",
"standard-version": "^7.0.0",
"supertest": "^4.0.2",
"tslib": "~1.10.0",
"tslint": "~5.20.0",
"tslint-microsoft-contrib": "~6.2.0",
"tsutils": "~3.17.1",
"typedoc": "^0.15.0",
"typedoc-plugin-markdown": "^2.2.11",
"typescript": "~3.6.4",
"typescript-closure-compiler": "^1.8.11"
},
"peerDependencies": {
"@fabrix/fabrix": "^1.6.4",
"@fabrix/spool-router": "^1.6.4",
"@fabrix/spool-errors": "^1.6.2"
},
"engines": {
"node": ">= 7.6.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fabrix-app/spool-sequelize/issues"
}
}