-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.82 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
{
"name": "json-order",
"version": "0.0.0-development",
"description": "Control the order of properties in JSON via a lookup object - including nested properties.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/develohpanda/json-order.git"
},
"bugs": {
"url": "https://github.com/develohpanda/json-order/issues"
},
"homepage": "https://github.com/develohpanda/json-order#readme",
"scripts": {
"test": "jest",
"test:cover": "jest --coverage",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage",
"compile": "tsc -p tsconfig.build.json",
"lint": "eslint **/*.{t,j}s",
"lint:fix": "yarn lint --fix",
"semantic-release": "semantic-release"
},
"lint-staged": {
"*.{{t,j}s{,x}}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"JSON",
"order",
"nested"
],
"author": "Opender Singh",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/babel__core": "^7.1.10",
"@types/jest": "^26.0.3",
"@types/lodash.clonedeep": "^4.5.6",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.0.1",
"jest": "^26.5.2",
"lint-staged": "10.5.3",
"prettier": "^2.1.2",
"semantic-release": "^17.1.2",
"ts-jest": "^26.4.1",
"typescript": "4.1.3"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0"
}
}