UNPKG

3.09 kBJSONView Raw
1{
2 "name": "finepack",
3 "description": "Organizes and maintains your JSON files readable",
4 "homepage": "https://github.com/Kikobeats/finepack",
5 "version": "2.11.0",
6 "main": "index.js",
7 "bin": {
8 "finepack": "bin/index.js"
9 },
10 "author": {
11 "email": "josefrancisco.verdu@gmail.com",
12 "name": "Kiko Beats",
13 "url": "https://github.com/Kikobeats"
14 },
15 "contributors": [
16 {
17 "name": "Peter deHaan",
18 "email": "peter@deseloper.com"
19 }
20 ],
21 "repository": {
22 "type": "git",
23 "url": "git://github.com/Kikobeats/finepack.git"
24 },
25 "bugs": {
26 "url": "https://github.com/Kikobeats/finepack/issues"
27 },
28 "keywords": [
29 "clean",
30 "cleanup",
31 "cli",
32 "deterministic",
33 "esthetic",
34 "json",
35 "lint",
36 "organize",
37 "package",
38 "package.json",
39 "pkg",
40 "tool",
41 "tooling",
42 "util",
43 "utility",
44 "validate"
45 ],
46 "dependencies": {
47 "acho": "~4.0.6",
48 "acho-skin-cli": "~2.0.1",
49 "chalk": "~4.1.0",
50 "coffeescript": "~2.7.0",
51 "existential-default": "~1.3.1",
52 "json-is-equal": "~1.0.0",
53 "jsonlint": "~1.6.3",
54 "lodash.omit": "~4.5.0",
55 "meow": "~9.0.0",
56 "normalize-package-data": "~4.0.0",
57 "sort-keys-recursive": "~2.1.7",
58 "update-notifier": "~5.1.0"
59 },
60 "devDependencies": {
61 "@commitlint/cli": "latest",
62 "@commitlint/config-conventional": "latest",
63 "@ksmithut/prettier-standard": "latest",
64 "c8": "latest",
65 "ci-publish": "latest",
66 "conventional-github-releaser": "latest",
67 "finepack": "latest",
68 "git-authors-cli": "latest",
69 "mocha": "latest",
70 "nano-staged": "latest",
71 "npm-check-updates": "latest",
72 "should": "latest",
73 "simple-git-hooks": "latest",
74 "standard": "latest",
75 "standard-markdown": "latest",
76 "standard-version": "latest"
77 },
78 "engines": {
79 "node": ">=4"
80 },
81 "files": [
82 "bin",
83 "index.js",
84 "lib"
85 ],
86 "scripts": {
87 "clean": "npm prune && npm i ",
88 "contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
89 "lint": "standard-markdown && standard",
90 "postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
91 "prerelease": "npm run update:check && npm run contributors",
92 "pretest": "npm run lint",
93 "release": "standard-version -a",
94 "release:github": "conventional-github-releaser -p angular",
95 "release:tags": "git push --follow-tags origin HEAD:master",
96 "test": "c8 mocha test/*.coffee",
97 "update": "ncu -u",
98 "update:check": "ncu -- --error-level 2"
99 },
100 "preferGlobal": true,
101 "license": "MIT",
102 "commitlint": {
103 "extends": [
104 "@commitlint/config-conventional"
105 ]
106 },
107 "mocha": {
108 "bail": true,
109 "reporter": "spec",
110 "require": [
111 "coffeescript/register",
112 "should"
113 ]
114 },
115 "nano-staged": {
116 "package.json": [
117 "finepack"
118 ]
119 },
120 "simple-git-hooks": {
121 "commit-msg": "npx commitlint --edit",
122 "pre-commit": "npx nano-staged"
123 }
124}