-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.55 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
{
"name": "@volkovasystem/resolve-callback",
"alias": "resolve-callback",
"version": "0.0.2",
"description": "Callback with promise.",
"main": "resolve-callback.js",
"scripts": {
"clean": "rm -rf ./node_modules || true && rm -fv ./package-lock.json || true && npm cache clean --force",
"reset": "npm run clean && rm -rfv ./resolve-callback.js || true && rm -rfv ./.build || true && rm -rfv ./.test || true",
"bundle": "npx parcel build ./*.module.js --no-cache --no-source-maps --no-minify --out-dir ./.build --out-file ./resolve-callback.bundle.js --global resolveCallback",
"compress": "npx terser ./.build/resolve-callback.bundle.js --compress --keep-classnames --keep-fnames --output ./.build/resolve-callback.js",
"resolve": "mv ./.build/resolve-callback.js ./resolve-callback.js && rm -rfv ./.build || true",
"build": "npm run bundle && npm run compress && npm run resolve",
"test": "node ./resolve-callback.test.js",
"stage": "npm run reset && npm install && npm run build && npm test && npm run clean",
"prepublishOnly": "npm run stage"
},
"repository": {
"type": "git",
"url": "https://github.com/volkovasystem/resolve-callback.git"
},
"keywords": [
"resolve-callback",
"resolve",
"callback"
],
"author": "Richeve S. Bebebdor <richeve.bebedor@gmail.com>",
"contributors": [
"Richeve S. Bebebdor <richeve.bebedor@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/volkovasystem/resolve-callback/issues"
},
"homepage": "https://github.com/volkovasystem/resolve-callback#readme"
}