-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "sequmise",
"version": "1.0.10",
"description": "Resolve arrays of promises and asynchronous tasks sequentially",
"main": "dist/sequmise.js",
"scripts": {
"test": "mocha",
"build": "webpack",
"cover": "istanbul cover _mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"prepublish": "npm build"
},
"pre-commit": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dacredenny/js-sequmise.git"
},
"keywords": [
"async",
"await",
"promise",
"promise-chain",
"javascript",
"nodejs",
"for",
"loop",
"asynchronous-tasks",
"for-each"
],
"author": "Dacre Denny",
"license": "MIT",
"bugs": {
"url": "https://github.com/dacredenny/js-sequmise/issues"
},
"homepage": "https://github.com/dacredenny/js-sequmise#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"istanbul": "1.1.0-alpha.1",
"mocha": "^9.1.3",
"mocha-lcov-reporter": "^1.3.0",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0",
"pre-commit": "^1.2.2"
},
"dependencies": {}
}