-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.25 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.25 KB
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
{
"name": "pretty-mass",
"version": "1.0.3",
"description": "Print grams in different measurements and in a readable form: `1234567` -> `1.234 tonne`, `123456` -> `123.456 kg`",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --config jest.config.json",
"test:watch": "jest --config jest.config.json --watch",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git://github.com/itayavra/pretty-mass.git"
},
"author": "Itay Avraham",
"license": "MIT",
"devDependencies": {
"@types/jest": "^28.1.6",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.4"
},
"files": [
"dist/**/*"
],
"keywords": [
"gram",
"kilogram",
"tonne",
"ton",
"mass",
"weight",
"pretty",
"print",
"pretty-print",
"pretty-mass",
"js",
"measurement",
"unit",
"convert",
"prettify",
"human",
"humanize",
"humanized",
"readable",
"text",
"string",
"number"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"versionBumpStrategy": "patch"
}
}