-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2 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
{
"name": "promise-iterate",
"version": "0.2.4",
"description": "Iteration over cursor-like objects with async/await",
"scripts": {
"build": "rm -rf dist/ && tsc",
"ci": "npm run lint && npm test",
"ci:commitlint": "commitlint-jenkins --pr-only",
"lint": "eslint . && tsc --noEmit",
"prepublishOnly": "npm run build && if [ \"$CI\" = \"\" ] && [ \"$npm_config_dry_run\" != true ]; then node -p \"JSON.parse(process.env.npm_package_config_manualPublishMessage)\"; exit 1; fi",
"test": "jest",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/mixmaxhq/promise-iterate.git"
},
"keywords": [
"iterate",
"iteration",
"cursor",
"cursor-like",
"async",
"await",
"promise"
],
"main": "dist/index.js",
"files": ["dist"],
"author": "Eli Skeggs <[email protected]> (https://eliskeggs.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mixmaxhq/promise-iterate/issues"
},
"homepage": "https://github.com/mixmaxhq/promise-iterate#readme",
"dependencies": {
"promise-callbacks": "^3.0.0",
"semver": "^5.4.1"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@mixmaxhq/commitlint-jenkins": "^1.4.4",
"@mixmaxhq/git-hooks": "^1.1.0",
"@mixmaxhq/jest-coverage-config": "^2.2.1",
"@mixmaxhq/jest-junit-config": "^1.0.0",
"@mixmaxhq/prettier-config": "^1.0.0",
"@mixmaxhq/semantic-release-config": "^2.0.0",
"@mixmaxhq/ts-config": "^1.2.0",
"@types/jest": "^27.5.2",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"cz-conventional-changelog": "^3.0.2",
"del-cli": "^3.0.1",
"eslint": "^7.29.0",
"eslint-config-mixmax": "^5.1.0",
"express": "^4.15.2",
"jest": "^27.0.6",
"jest-junit": "^12.0.0",
"prettier": "^2.3.2",
"semantic-release": "^17.2.3",
"supertest": "^4.0.2",
"ts-jest": "^27.1.5",
"typescript": "^4.3.4"
}
}