-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
115 lines (115 loc) Β· 3.11 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
110
111
112
113
114
115
{
"name": "json-analyzer",
"version": "0.0.0-development",
"description": "analyze and measure where you should spend your time optimizing your json files",
"main": "src/lib/json-analyzer.js",
"bin": { "json-analyzer.js": "src/bin/json-analyzer.js" },
"directories": {
"doc": "docs",
"lib": "src/lib",
"man": "man"
},
"scripts": {
"commitmsg": "commitlint -e $GIT_PARAMS",
"precommit": "lint-staged",
"prepush": "yarn test:unit",
"test": "snyk test && yarn lint && yarn test:unit:cover",
"test:unit": "jest",
"test:unit:cover": "yarn test:unit --coverage",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"lint": "eslint ./",
"lint:pr": "danger ci",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"generate:man": "sh ./scripts/docs/man-page-generator.sh man/README.md man/json-analyzer.1",
"generate:ghpage": "node ./scripts/www/gh-page-bundle.js",
"monitor": "snyk monitor",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/Fetz/json-analyzer.git"
},
"keywords": [
"json",
"tool",
"size",
"gzip",
"string",
"compressed",
"zlib",
"measure"
],
"author": "Fetz",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fetz/json-analyzer/issues"
},
"homepage": "https://github.com/Fetz/json-analyzer#readme",
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.0",
"@commitlint/travis-cli": "^7.0.0",
"babel-preset-es2015-rollup": "^3.0.0",
"codecov": "^3.0.2",
"danger": "^3.6.6",
"eslint": "^5.0.0",
"eslint-config-defaults": "^9.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-node": "^7.0.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "^0.14.3",
"jest": "^23.0.0",
"lint-staged": "^7.1.0",
"marked-man": "^0.2.1",
"prettier": "^1.12.1",
"rollup": "^0.60.0",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"semantic-release": "^15.4.1",
"snyk": "^1.80.1",
"travis-deploy-once": "^5.0.0"
},
"lint-staged": {
"*.js": [
"yarn lint --fix",
"git add"
],
"*.json": [
"yarn prettier --parser json",
"git add"
],
"*.md": [
"yarn prettier --parser markdown",
"git add"
]
},
"prettier": {
"singleQuote": true
},
"jest": {
"verbose": true
},
"commitlint": {
"extends": ["@commitlint/config-conventional"]
},
"dependencies": {
"commander": "^2.15.1",
"lodash.flowright": "^3.5.0",
"lodash.get": "^4.4.2",
"lodash.isobject": "^3.0.2",
"pako": "^1.0.6",
"pretty-bytes": "^5.0.0",
"prettyjson": "^1.2.1",
"utf8-length": "^0.0.1"
}
}