-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1010 Bytes
/
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
{
"name": "@paralenz/formatters",
"version": "1.1.0",
"description": "A collection of number formatters used widely by the Paralenz development team",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Casten Daurehøj",
"scripts": {
"build": "tsc",
"lint": "eslint",
"test": "jest"
},
"devDependencies": {
"@paralenz/eslint-config-typescript-react": "^1.2.3",
"@types/jest": "^27.4.1",
"@types/lodash.round": "^4.0.7",
"jest": "^27.5.1",
"ts-jest": "^29.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"dependencies": {
"lodash.round": "^4.0.4"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"homepage": "https://github.com/paralenz/formatters",
"repository": {
"type": "git",
"url": "git+https://github.com/paralenz/formatters.git"
},
"bugs": {
"url": "https://github.com/paralenz/formatters/issues"
},
"keywords": [
"paralenz",
"number",
"formatters"
]
}