-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.66 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "more-proms",
"version": "1.9.7",
"description": "A collection of additional promise extending classes. Including a (from the outside) ResablePromise, CancelAblePromise and a latestLatent utility function.",
"main": "./app/dist/esm/moreProms.mjs",
"types": "./app/dist/esm/moreProms.d.ts",
"exports": {
"node": {
"import": "./app/dist/esm/moreProms.mjs",
"require": "./app/dist/cjs/moreProms.js"
},
"default": "./app/dist/esm/moreProms.mjs"
},
"scripts": {
"build": "del-cli app/dist && concurrently \"npm run buildESM\" \"npm run buildCJS\" --raw",
"buildESM": "tsc -p ./tsconfig.prod.esm.json && mjsify app/dist esm cjs",
"buildCJS": "tsc -p ./tsconfig.prod.cjs.json && npm run buildCJS2",
"buildCJS2": "rollup --config rollup.node.prod.config.mjs",
"dev": "npm run devWeb",
"devWeb": "concurrently \"rollup --config rollup.web.dev.config.mjs -w\" \"node devServer.mjs\" --raw ",
"devNode": "concurrently \"rollup --config rollup.node.dev.config.mjs -w\" \"wait-on repl/dist/crossPlatformSpecs-repl.js && echo && echo Run \\'npm run repl\\' to run repl.\" --raw",
"deploy": "npm run build && npm publish",
"repl": "node ./repl/dist/moreProms-repl.js",
"start": "npm run repl",
"buildTest": "rollup --config rollup.node.test.config.mjs",
"test": "npm run buildTest && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maximilianMairinger/moreProms.git"
},
"keywords": [
"more",
"promises",
"collection",
"cancelable",
"promise",
"cancel",
"able",
"cancelablepromise",
"resolve",
"res",
"resable",
"resolveable",
"latent"
],
"author": "maximilianMairinger",
"license": "ISC",
"bugs": {
"url": "https://github.com/maximilianMairinger/moreProms/issues"
},
"homepage": "https://github.com/maximilianMairinger/moreProms#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.1",
"@types/jest": "^26.0.15",
"@types/node": "^13.13.4",
"builtins": "^5.0.1",
"concurrently": "^8.0.1",
"del-cli": "^5.0.0",
"detect-port": "^1.5.1",
"express": "^4.18.2",
"jest": "^26.6.3",
"mjsify": "^2.0.6",
"open": "^9.1.0",
"rollup": "^3.21.7",
"timoi": "^1.1.12",
"tiny-delay": "^1.2.0",
"tslib": "2.0.0",
"typescript": "^5.0.4",
"wait-on": "^7.0.1",
"webpack-merge": "^5.0.9"
},
"dependencies": {
"colorful-cli-logger": "^1.0.0",
"commander": "^10.0.1",
"key-index": "^1.7.0",
"req-package-json": "^2.1.2"
}
}