-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.42 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
{
"name": "@pricingmonkey/worker-bee",
"version": "2.0.0",
"description": "A simple fast job/task queue for WebWorkers",
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"scripts": {
"lint": "eslint --ext .ts src",
"build": "tsc",
"clean": "rimraf lib dist",
"test": "mocha 'test/**/*.spec.ts'",
"shipit": "yarn clean && yarn build && yarn lint && yarn test && scripts/publish.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pricingmonkey/worker-bee.git"
},
"keywords": [
"job",
"task",
"queue",
"worker",
"web-worker",
"browser"
],
"license": "BlueOak-1.0.0",
"dependencies": {
"fastpriorityqueue": "^0.6.1"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@babel/register": "^7.9.0",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.1",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"chai": "^4.2.0",
"conventional-changelog-cli": "^2.0.34",
"cross-env": "^7.0.2",
"eslint": "^7.0.0",
"mocha": "^7.1.2",
"rimraf": "^3.0.2",
"typemoq": "^2.1.0",
"typescript": "^3.9.2"
}
}