-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.18 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "script-scheduler",
"version": "0.0.1",
"description": "script-scheduler",
"license": "MIT",
"repository": "",
"author": "David Golverdingen",
"keywords": [
"Schedule",
"Task",
"Script",
"Runner",
"Job"
],
"files": [
"lib"
],
"main": "lib/index",
"typings": "lib/index",
"scripts": {
"clean": "rimraf lib",
"cleanNodeModules": "rimraf node_modules",
"lint": "tslint --force --format verbose \"src/configs/**/*.ts\" && tslint --force --format verbose \"src/interfaces/**/*.ts\" && tslint --force --format verbose \"src/periodicJobs/**/*.ts\" && tslint --force --format verbose \"src/services/**/*.ts\" && tslint --force --format verbose \"src/processors/**/*.ts\"",
"build": "npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty",
"test": "npm run build && mocha --compilers ts:ts-node/register --recursive",
"coverage": "nyc --reporter=text --reporter=html --reporter=lcov mocha --compilers ts:ts-node/register --recursive",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch",
"start": "npm run build && node lib/index.js"
},
"dependencies": {
"agenda": "^0.9.1",
"inversify": "^3.3.0",
"reflect-metadata": "^0.1.10",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"csv.js": "^1.0.2",
"mz": "^2.6.0",
"ws":"^2.3.1"
},
"devDependencies": {
"@types/agenda": "^0.8.33",
"@types/chai": "^3.0.0",
"@types/mocha": "^2.0.0",
"@types/mongodb": "^2.1.42",
"@types/node": "^7.0.0",
"@types/request": "0.0.42",
"@types/request-promise": "^4.1.33",
"@types/reflect-metadata": "^0.0.5",
"@types/mz":"^0.0.31",
"@types/ws":"^0.0.40",
"chai": "^3.0.0",
"coveralls": "^2.0.0",
"mocha": "^3.0.0",
"nyc": "^10.0.0",
"rimraf": "^2.0.0",
"ts-node": "^3.0.0",
"tslint": "^5.0.0",
"typescript": "^2.0.0"
},
"engines": {
"node": ">=4.0.0"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"lib"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [],
"all": true
}
}