-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
109 lines (109 loc) · 3.19 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "jq.node",
"version": "3.0.0",
"author": "Francois-Guillaume Ribreau <[email protected]> (http://fgribreau.com/)",
"engines": {
"node": ">=6"
},
"nyc": {
"exclude": [
"node_modules",
"dist",
"coverage",
"webpack.config.js",
"**/**.test.js"
]
},
"bin": {
"jqn": "lib/cli",
"jq.node": "lib/cli"
},
"scripts": {
"test": "nyc --all --statements=86.25 --lines=88.31 --functions=75 --branches=70 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000 $(find lib -name '*.test.js')",
"test-watch": "mocha -t 10000 -w './lib/**.test.js'",
"send-coverage": "cat ./coverage/lcov.info | coveralls",
"update": "updtr",
"compile": "projectz compile",
"posttest": "npm run compile",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0",
"changelog-git": "npm run changelog && npm run compile && git add *.md && git commit -m 'docs(changelog): updated' && git push origin master",
"release:patch": "npm run test && npm-release patch && npm run changelog-git",
"release:minor": "npm run test && npm-release minor && npm run changelog-git",
"release:major": "npm run test && npm-release major && npm run changelog-git"
},
"main": "./lib/api.js",
"repository": {
"type": "git",
"url": "git://github.com/fgribreau/jq.node.git"
},
"bugs": {
"url": "https://github.com/fgribreau/jq.node/issues"
},
"homepage": "https://github.com/fgribreau/jq.node",
"keywords": [
"jq",
"json",
"cli"
],
"browsers": false,
"maintainers": [],
"sponsors": [],
"contributors": [
"Francois-Guillaume Ribreau <[email protected]> (http://bit.ly/2c7uFJq)",
"chocolateboy <[email protected]> (https://github.com/chocolateboy)",
"Anton Ilin (https://github.com/bronislav)",
"Bruno Heridet (http://delapouite.com)",
"Thales Mello (https://github.com/thalesmello)",
"Michael Mior (http://michael.mior.ca)"
],
"devDependencies": {
"chai": "^4.3.7",
"conventional-changelog": "^4.0.0",
"conventional-changelog-cli": "^3.0.0",
"coveralls": "^3.1.1",
"mocha": "^10.2.0",
"npm-release": "^1.0.0",
"nyc": "^15.1.0",
"projectz": "^2.18.0",
"sinon": "^15.2.0",
"updtr": "^4.0.0"
},
"dependencies": {
"cardinal": "^2.1.1",
"joi": "^17.9.2",
"json2csv": "^5.0.6",
"lazy-require": "^2.2.0",
"lodash": "^4.17.21",
"strip-ansi": "^6.0.0",
"supports-color": "^9.4.0",
"yargs": "17.7.2"
},
"badges": {
"list": [
"travisci",
"npmversion",
"npmdownloads",
"daviddm",
"daviddmdev",
"---",
"patreon",
"gratipay",
"flattr",
"paypal",
"bitcoin"
],
"config": {
"patreonUsername": "fgribreau",
"gratipayUsername": "fgribreau",
"flattrUsername": "fgribreau",
"paypalURL": "https://fgribreau.me/paypal",
"bitcoinURL": "https://www.coinbase.com/fgribreau",
"githubUsername": "fgribreau",
"githubRepository": "jq.node",
"githubSlug": "fgribreau/jq.node",
"npmPackageName": "jq.node"
}
},
"license": "MIT",
"description": "no description was provided"
}