-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 761 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 761 Bytes
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
{
"name": "hyperq",
"version": "0.1.3",
"description": "generic queue processing library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --coverage",
"lint": "tslint 'src/**/*.ts'",
"build": "rm -rf dist && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alepaez/hyper-queue.git"
},
"author": "Alexandre Paez Sequeira",
"license": "GNU GENERAL PUBLIC LICENSE v3",
"bugs": {
"url": "https://github.com/alepaez/hyper-queue/issues"
},
"homepage": "https://github.com/alepaez/hyper-queue#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"ts-jest": "^26.5.1",
"tslint": "^6.1.3",
"typescript": "^4.1.5"
}
}