-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
57 lines (57 loc) · 1.4 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
{
"name": "numeralize-ru",
"version": "2.0.0",
"description": "Russian numerals",
"type": "module",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"import": "./lib/index.js",
"default": "./lib/index.js",
"browser": "./lib/index.browser.js"
}
},
"main": "lib/index.js",
"files": [
"lib/",
"LICENSE.md",
"README.md",
"package.json"
],
"scripts": {
"dev": "ts-mocha src/**.spec.ts -w --watch-files 'src/**.ts'",
"test": "ts-mocha src/**.spec.ts",
"lint": "eslint src/*",
"build": "rm -rf ./lib && tsc --build && esbuild ./lib/index.js --outfile=lib/index.browser.js --format=iife --global-name=numeralize",
"prepublish": "npm run lint && npm run test && npm run build"
},
"keywords": [
"russian",
"language",
"number",
"numeral",
"cardinal",
"ordinal",
"collective",
"numeralize",
"ru"
],
"author": "anotherpit <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^10.0.2",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"esbuild": "^0.19.5",
"eslint": "^8.51.0",
"mocha": "^10.2.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anotherpit/numeralize-ru.git"
}
}