forked from convert-units/convert-units
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.19 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
{
"name": "convert-units",
"version": "3.0.0-beta.4",
"description": "Convert between quantities in different units",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"files": [
"lib/"
],
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.3.1",
"prettier": "2.2.1",
"prettier-plugin-organize-imports": "^2.1.0",
"ts-jest": "^27.0.7",
"typescript": "^4.2.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"
},
"repository": {
"type": "git",
"url": "git://github.com/convert-units/convert-units.git"
},
"keywords": [
"metric",
"imperial",
"convert",
"ratio",
"fraction"
],
"author": "Ben Ng <me@benng.me> (http://benng.me)",
"license": "MIT"
}