forked from convert-units/convert-units
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.91 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "convert-units",
"version": "3.0.0-beta.5",
"description": "Convert between quantities in different units",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "index.d.ts",
"typesVersions": {
">=4.2": {
"*": [
"lib/types/*",
"lib/types/definitions/*"
]
}
},
"exports": {
".": {
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts"
},
"./definitions/*": {
"require": "./lib/cjs/definitions/*.js",
"import": "./lib/esm/definitions/*.js",
"types": "./lib/types/definitions/*.d.ts"
},
"./package.json": "./package.json"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.2",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.0.3",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src",
"format": "prettier --write src",
"compile": "tsc -p ./tsconfig.json && tsc -p ./tsconfig.cjs.json && tsc -p ./tsconfig.umd.json && tsc -p ./tsconfig.types.json"
},
"files": [
"lib/types/**/!(*.tsbuildinfo)",
"lib/esm/**/!(*.tsbuildinfo)",
"lib/cjs/**/!(*.tsbuildinfo)",
"lib/umd/**/!(*.tsbuildinfo)",
"LICENSE",
"README.md",
"package.json"
],
"repository": {
"type": "git",
"url": "git://github.com/convert-units/convert-units.git"
},
"keywords": [
"metric",
"imperial",
"convert",
"ratio",
"fraction"
],
"author": "Ben Ng <[email protected]> (http://benng.me)",
"license": "MIT"
}