-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.18 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
{
"name": "@pixelygroup/json-splitter",
"version": "1.3.5",
"description": "Splits json file based on size limit",
"main": "bin/index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"version-x": "version-x",
"version-major": "version-x -m",
"version-minor": "version-x -i",
"version-patch": "version-x -p"
},
"keywords": [
"json",
"splitter",
"pixely group"
],
"author": "Lubos Krystynek",
"license": "MIT",
"devDependencies": {
"@pixelygroup/eslint-config-px": "^0.1.2",
"@pixelygroup/version-x": "^0.2.0",
"eslint": "^7.11.0",
"eslint-plugin-jsdoc": "^30.7.3",
"eslint-plugin-node": "^11.1.0",
"husky": "^3.0.8",
"lint-staged": "^9.4.1"
},
"bin": {
"json-split": "./bin/index.js"
},
"dependencies": {
"yargs": "^16.1.0"
},
"repository": "github:pixelygroup/json-splitter.git",
"bugs": {
"url": "https://github.com/pixelygroup/json-splitter/issues"
},
"homepage": "https://github.com/pixelygroup/json-splitter#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}