-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.06 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
{
"name": "masynco",
"version": "1.2.3",
"description": "massive async operations",
"homepage": "https://tsertkov.github.io/masynco/",
"keywords": [
"async",
"map",
"reduce",
"limit"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tsertkov/masynco.git"
},
"type": "module",
"main": "masynco.cjs",
"types": "masynco.d.ts",
"exports": {
"import": "./masynco.js",
"require": "./masynco.cjs"
},
"scripts": {
"test": "c8 --check-coverage --lines 100 npm run test-node",
"test-node": "node tests/dynamic-import.js && node tests/import.js && node tests/require.cjs",
"test-browser": "node tests/browser/browser-test-runner.js",
"build": "npm run build-cjs && npm run build-test-cjs",
"build-cjs": "sed 's/^export default /module.exports = /' masynco.js > masynco.cjs",
"build-test-cjs": "sed 's/^export default /module.exports = /' masynco-test.js > masynco-test.cjs"
},
"devDependencies": {
"c8": "^7.11.0",
"exec-sh": "^0.4.0",
"serve": "^13.0.2"
}
}