forked from instructure/qless-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.72 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
{
"name": "@inst/qless-js",
"version": "0.4.16",
"private": false,
"description": "Qless JavaScript Bindings",
"main": "index.js",
"bin": {
"qless-js-worker": "bin/qless-js-worker.js",
"qless-js": "bin/qless-js.js"
},
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint --ext .js bin lib test",
"test": "jest --runInBand",
"prepublish": "git submodule update --init --recursive && make -C lib/qless-core clean all"
},
"repository": {
"type": "git",
"url": "http://github.com/instructure/qless-js"
},
"publishConfig": {
"registry": "https://instructure.jfrog.io/instructure/api/npm/internal-npm/"
},
"author": "Moz",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.0",
"bytes": "^3.1.0",
"commander": "^2.9.0",
"double-ended-queue": "^2.1.0-0",
"es6-error": "^4.0.2",
"json-stable-stringify": "^1.0.1",
"mkdirp": "^1.0.4",
"pidusage": "^2.0.21",
"redis": "^2.7.1",
"rimraf": "^3.0.2",
"uuid": "^3.0.1",
"winston": "^2.3.1",
"workerpool": "^2.3.0"
},
"devDependencies": {
"eslint": "^3.18.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"expect.js": "^0.3.1",
"jest": "^19.0.2",
"sinon": "^2.1.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.js",
"!bin/**",
"!index.js",
"!**/node_modules/**",
"!coverage/**",
"!test/helper.js",
"!test/jobs/**",
"!lib/workers/forking-workerpool.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testEnvironment": "node"
}
}