-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·79 lines (79 loc) · 1.9 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
{
"name": "@fabrix/spool-crons",
"version": "1.5.0",
"description": "Spool - Cron Jobs for Fabrix",
"homepage": "https://fabrix.app",
"author": {
"name": "scott-wyatt",
"email": "scottwyatt86@gmail.com",
"url": "https://cali-style.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fabrix-app/spool-crons/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabrix-app/spool-crons.git"
},
"keywords": [
"crons",
"spool",
"fabrix",
"trailjs"
],
"scripts": {
"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"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"pre-commit": [
"test"
],
"dependencies": {
"boom": "^7.2.0",
"joi": "^13.4.0",
"moment": "^2.22.2",
"node-schedule": "^1.3.0",
"shortid": "^2.2.12",
"uuid": "^3.3.0",
"lodash": "^4.17.5"
},
"devDependencies": {
"@fabrix/fabrix": "^1.5.3",
"@fabrix/lint": "^1.0.0-alpha.3",
"@fabrix/spool-i18n": "^1.5.0",
"@fabrix/spool-sequelize": "^1.5.0",
"@fabrix/spool-express": "^1.5.0",
"@fabrix/spool-router": "^1.5.0",
"@types/node": "~10.3.4",
"express": "^4.16.3",
"pg": "^6.4.2",
"mocha": "^5",
"nyc": "^12.0.2",
"smokesignals": "^2.0.0",
"supertest": "^3.1.0",
"tslib": "~1.9.0",
"tslint": "~5.10.0",
"tslint-microsoft-contrib": "~5.0.3",
"tsutils": "~2.27.1",
"typescript": "~2.8.1"
},
"peerDependencies": {
"@fabrix/fabrix": "^1.5.0"
},
"engines": {
"node": ">= 7.6.0 =< 10.0.0",
"npm": ">= 3.10.0"
}
}