-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.28 KB
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
{
"name": "@programic/queue",
"version": "1.0.4",
"description": "A simple queue for JavaScript/TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --config jest.config.json",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/programic/queue-js.git"
},
"files": [
"dist/**/*"
],
"keywords": [
"queue",
"javascript",
"typescript"
],
"author": "Thimon Wentink (https://github.com/thimonwentink)",
"license": "MIT",
"bugs": {
"url": "https://github.com/programic/queue-js/issues"
},
"homepage": "https://programic.com",
"devDependencies": {
"@programic/eslint-config-typescript": "^2.0.0",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
}
}