-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "@marchintosh94/number-format",
"version": "0.1.6",
"description": "Format numbers and number string",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"test": "jest",
"build": "rm -rf dist/ && tsc --project tsconfig.build.json",
"publish": "npm run build && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marchintosh94/numberformat.git"
},
"keywords": [
"number",
"format",
"currency",
"currency-formatting",
"react format number",
"angular format number",
"vue format number",
"js format number"
],
"author": "marchintosh",
"license": "MIT",
"bugs": {
"url": "https://github.com/marchintosh94/numberformat/issues"
},
"homepage": "https://github.com/marchintosh94/numberformat#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}