-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.86 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
{
"name": "resable-promise",
"version": "1.0.0",
"description": "Simple promise subclass, allowing for resolvement outside of callback (as property).",
"main": "./app/dist/esm/resablePromise.mjs",
"types": "./app/dist/esm/resablePromise.d.ts",
"exports": {
"node": {
"import": "./app/dist/esm/resablePromise.mjs",
"require": "./app/dist/cjs/resablePromise.js"
},
"default": "./app/dist/esm/resablePromise.mjs"
},
"scripts": {
"build": "del-cli app/dist && rollup --config rollup.prod.config.js && renamer --find /\\.js$/i --replace .mjs app/dist/esm/**",
"dev": "npm run devWeb",
"devWeb": "rollup --config rollup.web.dev.config.js -w",
"devNode": "rollup --config rollup.node.dev.config.js -w",
"deploy": "npm run build && npm publish",
"repl": "node ./repl/dist/resablePromise-repl.js",
"start": "npm run repl",
"buildTest": "rollup --config rollup.node.test.config.js",
"test": "npm run buildTest && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maximilianMairinger/resablePromise.git"
},
"keywords": [
"resolve",
"able",
"resable",
"promise",
"utility"
],
"author": "maximilianMairinger",
"license": "ISC",
"bugs": {
"url": "https://github.com/maximilianMairinger/resablePromise/issues"
},
"homepage": "https://github.com/maximilianMairinger/resablePromise#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@rollup/plugin-typescript": "^5.0.0",
"@types/jest": "^26.0.15",
"@types/node": "^13.13.4",
"commander": "^6.2.1",
"del-cli": "^5.0.0",
"jest": "^26.6.3",
"renamer": "^4.0.0",
"rollup": "^2.18.1",
"tslib": "2.0.0",
"typescript": "^4.0.2",
"webpack-merge": "^5.0.9"
},
"dependencies": {}
}