-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 2.07 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
{
"name": "@volkovasystem/format-package-json-file",
"alias": "format-package-json-file",
"version": "0.0.11",
"description": "Reformat package JSON file to specific convention.",
"main": "format-package-json-file.js",
"scripts": {
"clean": "rm -rf ./node_modules || true && rm -fv ./package-lock.json || true && npm cache clean --force",
"reset": "npm run clean && rm -rfv ./format-package-json-file.js || true && rm -rfv ./.build || true && rm -rfv ./.test || true",
"bundle": "npx parcel build ./*.module.js --no-cache --no-source-maps --no-minify --target node --out-dir ./.build --out-file ./format-package-json-file.bundle.js --global formatPackageJSONFile",
"compress": "npx terser ./.build/format-package-json-file.bundle.js --compress --keep-classnames --keep-fnames --output ./.build/format-package-json-file.js",
"resolve": "mv ./.build/format-package-json-file.js ./format-package-json-file.js && rm -rfv ./.build || true",
"build": "npm run bundle && npm run compress && npm run resolve",
"test": "node ./format-package-json-file.test.js",
"stage": "npm run reset && npm install && npm run build && npm test && npm run clean",
"prepublishOnly": "npm run stage",
"format-package-json-file": "node ./format-package-json-file.run.js",
"fpjf": "node ./format-package-json-file.run.js"
},
"bin": {
"format-package-json-file": "format-package-json-file.run.js",
"fpjf": "format-package-json-file.run.js"
},
"repository": {
"type": "git",
"url": "https://github.com/volkovasystem/format-package-json-file.git"
},
"keywords": [
"format-package-json-file",
"format",
"package",
"json",
"file"
],
"author": "Richeve S. Bebedor <[email protected]>",
"contributors": [
"Richeve S. Bebedor <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/volkovasystem/format-package-json-file/issues"
},
"homepage": "https://github.com/volkovasystem/format-package-json-file#readme",
"dependencies": {
"format-json-file": "npm:@volkovasystem/[email protected]"
}
}