-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.89 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
100
101
102
103
{
"name": "vulpes",
"version": "1.4.2",
"description": "Job management framework",
"main": "dist/index.js",
"scripts": {
"build": "babel source/ --out-dir dist",
"dev": "run-s watch",
"docs": "jsdoc2md 'source/**/*.js' > API.md",
"format": "prettier --write '{source,test}/**/*.js'",
"prepare": "run-s build",
"test": "run-s build test:all test:coverage test:format",
"test:all": "nyc mocha --timeout 10000 -r test/index.js 'test/**/*.spec.js'",
"test:coverage": "nyc check-coverage --lines 50 --functions 50 --branches 50 --statements 50",
"test:format": "prettier-check '{source,test}/**/*.js'",
"test:integration": "npm run build && mocha --timeout 10000 -r test/index.js 'test/integration/**/*.spec.js'",
"test:unit": "npm run build && mocha -r test/index.js 'test/unit/**/*.spec.js'",
"watch": "nodemon --exec 'npm run build' --watch source/"
},
"files": [
"dist/**/*",
"symbols.js",
"API.md",
"vulpes-logo.jpg"
],
"lint-staged": {
"{source,test}/**/*.js": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kiosked/vulpes.git"
},
"keywords": [
"job",
"management",
"service",
"task"
],
"engines": {
"node": ">=6"
},
"author": "Perry Mitchell <perry@kiosked.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kiosked/vulpes/issues"
},
"homepage": "https://github.com/Kiosked/vulpes#readme",
"dependencies": {
"@buttercup/channel-queue": "^0.5.0",
"@kiosked/object-stream": "^0.1.2",
"JSONStream": "^1.3.5",
"babel-polyfill": "^6.26.0",
"data-uri-to-buffer": "^3.0.0",
"debounce": "^1.2.0",
"delayable-setinterval": "^0.1.1",
"end-of-stream": "^1.4.4",
"eventemitter3": "^4.0.0",
"file-exists": "^5.0.1",
"ioredis": "^4.14.1",
"merge": "^1.2.1",
"mkdirp": "^1.0.3",
"ms": "^2.1.2",
"multisort": "^0.5.3",
"nested-property": "0.0.7",
"node-cron": "^2.0.3",
"parse-data-uri": "^0.2.0",
"pify": "^5.0.0",
"pump": "^3.0.0",
"rimraf": "^3.0.2",
"sleep-promise": "^8.0.1",
"stream-filter": "^2.1.0",
"tmp": "^0.1.0",
"uuid": "^3.4.0",
"verror": "^1.10.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"husky": "^4.2.3",
"jsdoc-to-markdown": "^5.0.3",
"lint-staged": "^10.0.7",
"mocha": "^7.0.1",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"prettier-check": "^2.0.0",
"read-all-stream": "^3.1.0",
"sinon": "^8.1.1"
}
}