-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "sandar",
"version": "0.0.5",
"description": "Kyrgyz / Kazakh numbers to words converter",
"sideEffects": false,
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "unbuild",
"lint": "eslint --ext .ts,.js,.mjs,.cjs .",
"format": "prettier --ignore-path .eslintignore --write \"**/*.+(js|ts|json)\"",
"test": "vitest run",
"prerelease": "npm run build",
"release": "bumpp --commit --push --tag && npm publish"
},
"keywords": [
"kyrgyz",
"kazakh",
"numbers",
"converter",
"latin"
],
"author": "Timur Bolotov <timursaurus@gmail.com>",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"bumpp": "^7.1.1",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"prettier": "^2.5.1",
"typescript": "^4.5.5",
"unbuild": "^0.6.9",
"vitest": "^0.5.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timursaurus/sandar.git"
},
"bugs": {
"url": "https://github.com/timursaurus/sandar/issues",
"email": "timursaurus@gmail.com"
},
"homepage": "https://github.com/timursaurus/sandar#readme"
}