-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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
{
"name": "node-queue-manager",
"version": "0.3.4",
"description": "A node queue manager",
"main": "index.js",
"repository": "[email protected]:pierophp/node-queue-manager.git",
"author": "Piero Giusti <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "nyc mocha -A --opts ./mocha.opts --require ts-node/register -r tsconfig-paths/register",
"test:watch": "nodemon --exec yarn test",
"npm:publish": "yarn build && cp package.json dist/ && cd dist/ && npm publish"
},
"dependencies": {
"bull": "^3.3.6",
"lodash": "^4.17.4"
},
"devDependencies": {
"@types/chai": "^4.0.5",
"@types/bull": "^3.3.0",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.53",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"nodemon": "^1.12.1",
"nyc": "^11.3.0",
"ts-node": "^3.3.0",
"tsconfig-paths": "^2.4.0",
"tslint": "^5.8.0",
"tslint-config-airbnb": "^5.4.2",
"typescript": "^2.6.1"
},
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"docker"
],
"extension": [
".ts"
],
"reporter": [
"html",
"lcovonly",
"text-summary"
],
"all": true
}
}