-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.58 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
{
"name": "@develohpanda/fluent-builder",
"version": "0.0.0-development",
"description": "A typed, fluent builder for creating objects in Typescript",
"repository": "https://github.com/develohpanda/fluent-builder",
"author": "Opender Singh <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"typescript",
"javascript",
"fluent",
"objectbuilder"
],
"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}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "26.0.14",
"@typescript-eslint/eslint-plugin": "4.4.0",
"@typescript-eslint/parser": "4.4.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "6.12.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-simple-import-sort": "5.0.3",
"husky": "4.3.0",
"jest": "26.5.2",
"lint-staged": "10.5.1",
"prettier": "2.7.1",
"semantic-release": "^17.1.2",
"ts-jest": "26.4.4",
"typescript": "4.2.3"
}
}