-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.57 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
{
"name": "persian-ts",
"version": "1.0.0",
"description": "Variety of Persian tools, all gathered in one place",
"keywords": [
"persian",
"utilities",
"text-to-number",
"number-to-text",
"decode-url",
"fix-url"
],
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"author": "Omid Astaraki <omid.ocean@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/electather/persian.ts.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"git add"
],
"*.js": "eslint --cache --fix"
},
"homepage": "https://github.com/electather/persian.ts#readme",
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"build": "tsc",
"release": "release-it",
"eslint": "eslint 'src/**/*.ts'",
"eslint:fix": "eslint --fix 'src/**/*.ts'",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverageFrom": [
"src/*.{js,ts}"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^7.0.2",
"jest": "^27.1.0",
"jest-config": "^27.1.0",
"lint-staged": "^11.1.2",
"lodash.camelcase": "^4.3.0",
"prettier": "^2.3.2",
"release-it": "^14.11.5",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.4.2"
},
"dependencies": {
"@release-it/conventional-changelog": "^3.3.0"
}
}