-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.71 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
{
"name": "ordinalize-tr",
"version": "1.0.1",
"description": "Add ordinal suffix to a number - for Turkish language",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"package.json",
"README.md"
],
"scripts": {
"preversion": "npm test",
"prepublishOnly": "npm run lint && npm test && npm run build && npm run coveralls",
"prebuild": "rimraf dist",
"build": "rollup -c rollup.config.ts",
"lint": "eslint .",
"test": "jest",
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yatki/ordinalize-tr.git"
},
"keywords": [
"ordinal",
"suffix",
"number",
"turkish",
"tr",
"tr-TR",
"i18n",
"internationalization",
"localization",
"l10n"
],
"author": "Mehmet Yatkı <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yatki/ordinalize-tr/issues"
},
"homepage": "https://github.com/yatki/ordinalize-tr#readme",
"devDependencies": {
"@types/jest": "26.0.10",
"@types/node": "14.6.0",
"@typescript-eslint/eslint-plugin": "3.9.1",
"@typescript-eslint/parser": "3.9.1",
"coveralls": "3.1.0",
"eslint": "7.7.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.20.0",
"husky": "4.2.5",
"jest": "26.4.1",
"lint-staged": "10.2.11",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"rollup": "2.26.4",
"rollup-plugin-terser": "7.0.0",
"rollup-plugin-typescript2": "0.27.2",
"ts-jest": "26.2.0",
"typescript": "4.0.2"
}
}