-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.76 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
{
"type": "commonjs",
"name": "parawait",
"version": "0.2.1",
"description": "A JavaScript library for achieving concurrency and parallelism using promises.",
"main": "dist/main.js",
"module": "lib/esm/",
"files": [
"dist",
"lib/cjs/",
"lib/esm/",
"src"
],
"directories": {
"dist": "dist",
"cjs": "lib/cjs/",
"esm": "lib/esm/",
"src": "src"
},
"scripts": {
"clean": "shx rm -rf dist lib",
"transpile": "tsc && tsc -m es6 --outDir lib/esm/",
"ext": "node ./scripts/add-js-extensions.js",
"bundle": "NODE_ENV=production webpack",
"build": "npm run clean && npm run transpile && npm run ext && npm run bundle",
"test:installation:cjs": "node ./tests/installation/cjs/cjs.js",
"link": "sudo npm link",
"test:installation:npm": "node ./tests/installation/npm/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mishieck/parawait.git"
},
"keywords": [
"javascript",
"library",
"parallelism",
"concurrency",
"parallel",
"concurrent",
"promises",
"async",
"await",
"typescript"
],
"author": "Mishieck Mwale <[email protected]> (https://mishieck.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mishieck/parawait/issues"
},
"homepage": "https://github.com/Mishieck/parawait#readme",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"babel-loader": "^8.2.2",
"eslint": "^7.27.0",
"prettier": "^2.3.0",
"shx": "^0.3.3",
"ts-loader": "^8.0.18",
"typescript": "^4.3.2",
"webpack": "^5.37.1",
"webpack-cli": "^4.5.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}