-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.21 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.21 KB
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
{
"name": "jsonash",
"version": "0.0.8",
"description": "utility functions for json",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/index.js",
"prettier": "prettier --write src/**/*.{js,ts,tsx}"
},
"bin": {
"jsonash": "src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nikhilunni511/jsonash.git"
},
"keywords": [
"npm",
"json",
"jsonash",
"sort",
"replace",
"camel case",
"pascal case",
"snake case",
"json sort",
"replace keys",
"validate json",
"validate"
],
"author": "nikhilunni <nikhi.unni@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nikhilunni511/jsonash/issues"
},
"homepage": "https://github.com/nikhilunni511/jsonash#readme",
"dependencies": {
"lodash": "^4.17.21",
"ncp": "^2.0.0",
"npm": "^6.14.15"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx,json,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"husky": "^4.2.5",
"lint-staged": "^10.1.3",
"prettier": "^2.0.4"
}
}