UNPKG

3.03 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.10.10",
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 "repository": {
16 "type": "git",
17 "url": "git://github.com/Kikobeats/finepack.git"
18 },
19 "bugs": {
20 "url": "https://github.com/Kikobeats/finepack/issues"
21 },
22 "keywords": [
23 "clean",
24 "cleanup",
25 "cli",
26 "deterministic",
27 "esthetic",
28 "json",
29 "lint",
30 "organize",
31 "package",
32 "package.json",
33 "pkg",
34 "tool",
35 "tooling",
36 "util",
37 "utility",
38 "validate"
39 ],
40 "dependencies": {
41 "acho": "~4.0.6",
42 "acho-skin-cli": "~2.0.1",
43 "chalk": "~4.1.0",
44 "coffeescript": "~2.5.1",
45 "existential-default": "~1.3.1",
46 "json-is-equal": "~1.0.0",
47 "jsonlint": "~1.6.3",
48 "lodash.omit": "~4.5.0",
49 "meow": "~8.1.0",
50 "normalize-package-data": "~3.0.0",
51 "sort-keys-recursive": "~2.1.0",
52 "update-notifier": "~5.0.0"
53 },
54 "devDependencies": {
55 "@commitlint/cli": "latest",
56 "@commitlint/config-conventional": "latest",
57 "ci-publish": "latest",
58 "conventional-github-releaser": "latest",
59 "coveralls": "latest",
60 "finepack": "latest",
61 "git-authors-cli": "latest",
62 "git-dirty": "latest",
63 "husky": "latest",
64 "lint-staged": "latest",
65 "mocha": "latest",
66 "npm-check-updates": "latest",
67 "nyc": "latest",
68 "should": "latest",
69 "standard": "latest",
70 "standard-markdown": "latest",
71 "standard-version": "latest"
72 },
73 "engines": {
74 "node": ">=4"
75 },
76 "files": [
77 "bin",
78 "index.js",
79 "lib"
80 ],
81 "scripts": {
82 "clean": "npm prune && npm i ",
83 "contributors": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
84 "coveralls": "nyc report --reporter=text-lcov | coveralls",
85 "lint": "standard-markdown && standard",
86 "postrelease": "npm run release:tags && npm run release:github && ci-publish",
87 "prerelease": "npm run update:check && npm run contributors",
88 "pretest": "npm run lint",
89 "release": "standard-version -a",
90 "release:github": "conventional-github-releaser -p angular",
91 "release:tags": "git push --follow-tags origin HEAD:master",
92 "test": "nyc mocha test/*.coffee",
93 "update": "ncu -u",
94 "update:check": "ncu -- --error-level 2"
95 },
96 "preferGlobal": true,
97 "license": "MIT",
98 "commitlint": {
99 "extends": [
100 "@commitlint/config-conventional"
101 ]
102 },
103 "husky": {
104 "hooks": {
105 "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
106 "pre-commit": "lint-staged"
107 }
108 },
109 "lint-staged": {
110 "package.json": [
111 "finepack"
112 ]
113 },
114 "mocha": {
115 "bail": true,
116 "reporter": "spec",
117 "require": [
118 "coffeescript/register",
119 "should"
120 ]
121 }
122}