-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
93 lines (93 loc) · 2.89 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "queue-promise",
"version": "2.2.1",
"keywords": [
"queue",
"queue-tasks",
"queue-promise",
"promise",
"promise-chain",
"promise-queue"
],
"files": [
"/dist"
],
"engines": {
"node": ">=8.12.0"
},
"description": "A simple, dependency-free library for concurrent promise-based queues. Comes with with concurrency and timeout control.",
"author": "Łaniewski Bartosz <bartosz@laniewski.me> (https://laniewski.me/)",
"license": "MIT",
"main": "dist/index.js",
"types": "dist",
"repository": {
"type": "git",
"url": "https://github.com/Bartozzz/queue-promise.git"
},
"bugs": {
"url": "https://github.com/Bartozzz/queue-promise/issues"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-async-generator-functions": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-flow": "^7.9.0",
"@babel/register": "^7.9.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@types/node": "16.4.10",
"babel-eslint": "^10.1.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-minify": "^0.5.1",
"chai": "^4.2.0",
"dtslint": "^4.0.9",
"eslint": "^7.2.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-flowtype": "^5.1.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"flow-bin": "^0.156.0",
"fs-extra": "^10.0.0",
"glob": "^7.1.6",
"husky": "^7.0.0",
"mocha": "^9.0.0",
"prettier": "^2.0.2",
"rimraf": "^3.0.2",
"semantic-release": "17.4.4",
"typescript": "^4.2.4"
},
"scripts": {
"pretest": "npm run prepare",
"test": "npm run test:lint && npm run test:flow && npm run test:typescript && npm run test:unit",
"test:flow": "npx flow",
"test:typescript": "npx dtslint types",
"test:unit": "npx mocha --require @babel/register",
"test:lint": "npx eslint src",
"defs:flow": "npx babel-node ./.bin/definitions-flow.js",
"defs:typescript": "npx babel-node ./.bin/definitions-typescript.js",
"clean": "npx rimraf dist",
"prebuild": "npm run clean",
"build": "npx babel src -d dist",
"postbuild": "npm run defs:flow && npm run defs:typescript",
"watch": "npx babel src -d dist -w",
"prepare": "npm run build",
"prerelease": "npm run build",
"release": "git add dist/* && standard-version -a"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}