UNPKG

2.79 kBJSONView Raw
1{
2 "name": "json-future",
3 "description": "Unbelievable and Modern JSON interface.",
4 "homepage": "https://nicedoc.io/kikobeats/json-future",
5 "version": "2.2.15",
6 "main": "lib",
7 "author": {
8 "email": "josefrancisco.verdu@gmail.com",
9 "name": "Kiko Beats",
10 "url": "https://github.com/Kikobeats"
11 },
12 "repository": {
13 "type": "git",
14 "url": "git+https://github.com/kikobeats/json-future.git"
15 },
16 "bugs": {
17 "url": "https://github.com/Kikobeats/json-future/issues"
18 },
19 "keywords": [
20 "ES6",
21 "ES7",
22 "JSON",
23 "async",
24 "circular",
25 "future",
26 "interface",
27 "load",
28 "parse",
29 "save",
30 "stable",
31 "stringify",
32 "write"
33 ],
34 "dependencies": {
35 "args-js": "~0.10.12",
36 "async": "~3.2.0",
37 "cb2promise": "~1.1.1",
38 "fast-safe-stringify": "~2.1.0",
39 "load-json-file": "~6.2.0",
40 "nodeify": "~1.0.1",
41 "parse-json": "~5.2.0",
42 "sliced": "~1.0.1",
43 "write-json-file": "~4.3.0"
44 },
45 "devDependencies": {
46 "@commitlint/cli": "latest",
47 "@commitlint/config-conventional": "latest",
48 "c8": "latest",
49 "ci-publish": "latest",
50 "conventional-github-releaser": "latest",
51 "finepack": "latest",
52 "git-authors-cli": "latest",
53 "mocha": "latest",
54 "nano-staged": "latest",
55 "npm-check-updates": "latest",
56 "prettier-standard": "latest",
57 "should": "latest",
58 "simple-git-hooks": "latest",
59 "standard": "latest",
60 "standard-markdown": "latest",
61 "standard-version": "latest"
62 },
63 "engines": {
64 "node": ">= 4"
65 },
66 "files": [
67 "lib",
68 "register.js"
69 ],
70 "scripts": {
71 "clean": "rm -rf node_modules",
72 "contributors": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
73 "coverage": "nyc report --reporter=text-lcov | coveralls",
74 "lint": "standard lib",
75 "postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
76 "prerelease": "npm run update:check && npm run contributors",
77 "pretest": "npm run lint",
78 "preversion": "git-authors-cli && git add package.json",
79 "release": "standard-version -a",
80 "release:github": "conventional-github-releaser -p angular",
81 "release:tags": "git push --follow-tags origin HEAD:master",
82 "test": "c8 mocha",
83 "update": "ncu -u",
84 "update:check": "ncu -- --error-level 2"
85 },
86 "license": "MIT",
87 "commitlint": {
88 "extends": [
89 "@commitlint/config-conventional"
90 ]
91 },
92 "nano-staged": {
93 "package.json": [
94 "finepack"
95 ]
96 },
97 "simple-git-hooks": {
98 "commit-msg": "npx commitlint --edit",
99 "pre-commit": "npx nano-staged"
100 },
101 "standard": {
102 "globals": [
103 "after",
104 "describe",
105 "it"
106 ]
107 }
108}