-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
63 lines (63 loc) · 1.64 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
{
"name": "adonis-kue",
"version": "5.0.1",
"description": "Kue provider for the Adonis framework",
"main": "src/Kue/index.js",
"directories": {
"test": "test"
},
"scripts": {
"pretest": "npm run lint",
"posttest": "npm run coverage",
"test":
"ENV_SILENT=true NO_ANSI=false FORCE_COLOR=true nyc node ./bin/index.js --local",
"lint": "standard",
"lint:fix": "standard --fix",
"precommit": "npm run test && lint-staged",
"prepush": "npm run test && lint-staged",
"coverage": "nyc report --reporter=text-lcov"
},
"lint-staged": {
"*.js": ["npm run lint:fix", "git add"]
},
"author": "Nicholas Rempel <[email protected]>",
"license": "MIT",
"dependencies": {
"boxen": "^1.3.0",
"kue": "^0.11.6",
"lodash": "^4.17.10"
},
"devDependencies": {
"@adonisjs/ace": "^4.0.8",
"@adonisjs/fold": "^4.0.8",
"@adonisjs/framework": "^4.0.31",
"@adonisjs/redis": "^2.0.6",
"@adonisjs/sink": "^1.0.16",
"child_process": "^1.0.2",
"coveralls": "^3.0.1",
"dotenv": "^4.0.0",
"husky": "^0.13.4",
"japa": "^1.0.6",
"japa-cli": "^1.0.1",
"lint-staged": "^4.0.0",
"nyc": "^11.8.0",
"semver": "^5.5.0",
"standard": "^10.0.2",
"walk-sync": "^0.3.2"
},
"nyc": {
"include": ["src", "providers", "commands"]
},
"standard": {
"globals": ["use", "make"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/nrempel/adonis-kue.git"
},
"keywords": ["adonis", "kue", "queue"],
"bugs": {
"url": "https://github.com/nrempel/adonis-kue/issues"
},
"homepage": "https://github.com/nrempel/adonis-kue#readme"
}