-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 1.94 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
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
{
"name": "@duzun/async-series",
"version": "1.0.4",
"description": "Process a list of items with async iteratee in series",
"module": "index.js",
"main": "dist/asyncSeries.js",
"unpkg": "dist/asyncSeries.min.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.ts",
"index.d.ts",
"dist/*.js",
"dist/*.js.map",
"README.md"
],
"reveal": true,
"publishConfig": {
"access": "public"
},
"scripts": {
"tsc": "tsc --build",
"rollup": "rollup -c rollup.config.mjs",
"build": "npm run tsc && npm run rollup",
"test": "npx mocha --reporter spec",
"coverage": "npx nyc --reporter=lcov --reporter=text-summary npm run test",
"jest": "npx jest",
"jest:watch": "npx jest --watch",
"jest:cov": "npx jest --coverage",
"verup": "verup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/duzun/asyncSeries.js.git"
},
"keywords": [
"Promise",
"each",
"forEach",
"map",
"reduce",
"async",
"series",
"list",
"array"
],
"author": "Dumitru Uzun <contact@duzun.me> (https://DUzun.Me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/duzun/asyncSeries.js/issues"
},
"homepage": "https://github.com/duzun/asyncSeries.js#readme",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-terser": "^0.4.0",
"chai": "^4.2.0",
"mocha": "^10.2.0",
"rollup": "^3.10.0",
"verup": "^1.7"
},
"browserslist": "> 0.25%, not dead",
"jshintConfig": {
"esversion": 9,
"laxbreak": true,
"laxcomma": true,
"undef": true,
"unused": true,
"sub": true,
"expr": true,
"bitwise": false,
"eqeqeq": false,
"boss": true,
"eqnull": true,
"scripturl": true,
"-W041": false
},
"extra": {
"verup": {
"files": [
"package-lock.json",
"index.ts"
]
}
}
}